作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个这样的类(class):
class ma_class(FlaskView):
route_base = '/'
state = False
@route('/load')
def load(self):
self.state = True
return 'load : ok'
@route('/stuff')
def do_something(self)
if not self.state:
return 'you must invoke load method'
当我向 url/load
发送请求时,我在响应中得到 Load : ok
。
但是之后,当我向 url/stuff
发送请求时,我得到you Must invoke load method
。
self.state
没有改变,我不知道为什么。
感谢您的阅读
最佳答案
http
是无状态的。这意味着一个请求对第二个请求一无所知,依此类推,除非您以某种方式告诉它。如果您使用 Flask,则可以使用“ session ”来实现。 session 是一种保存多个请求(例如登录)信息的方法。
from flask import session
class ma_class(FlaskView):
route_base = '/'
@route('/load')
def load(self):
session['state'] = True
return 'load : ok'
@route('/stuff')
def do_something(self)
if 'state' not in session:
return 'you must invoke load method'
关于python - 属性在对 FlaskView 的请求之间永远不会更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18989291/
我有一个这样的类(class): class ma_class(FlaskView): route_base = '/' state = False @route('/load')
我是一名优秀的程序员,十分优秀!