Heim > Fragen und Antworten > Hauptteil
我在登陆的时候 自己写的login_user 里 将 user 对象保存在 g中,g.user = user 然后刷新了页面,但是当页面刷新后,g中就没有user了,请问怎么保存user在g中呢?
PHP中文网2017-04-17 17:30:21
To share data that is valid for one request only from one function to another, a global variable is not good enough because it would break in threaded environments. Flask provides you with a special object that ensures it is only valid for the active request and that will return different values for each request. In a nutshell: it does the right thing, like it does for request and session.
你应该用session:http://flask.pocoo.org/docs/0.10/quickstart/#sessions
巴扎黑2017-04-17 17:30:21
这是个关于flask会话持久化的问题。
你可以先参考一下这里:http://docs.jinkan.org/docs/flask/quickstart.html#sessions
ringa_lee2017-04-17 17:30:21
g对象是在一个请求中共享变量,不同的请求对应的是不同的g对象。你这种情况的话应该使用session,session对象用于在不同的请求之间共享变量,最常见的就是实现登入登出的功能。