如何在cherrypy中设置会话值以及如何获得该值?

时间:2013-10-01 13:00:27

标签: python session openerp cherrypy

我通过导入cherrypy

创建了一个会话
cherrypy.session['otp_status']=1

但是当我尝试将其检索为以下

otp_status=cherrypy.session['otp_status']

显示

KeyError: 'otp_status'

如何从会话中获取价值?

1 个答案:

答案 0 :(得分:0)