我有这样的课:
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
没有改变,我不知道为什么。
谢谢阅读