我使用CherryPy(版本3.2.0)运行Web并使用cherrypy.session
存储会话特定数据。它与Firefox完美配合。但是,我注意到cherrypy.session会在Chrome上遇到问题。基本上,当浏览后续页面时,它看起来像会话变量重置。
我相信我的配置设置正确
tools.sessions.on = True
tools.sessions.storage_type = "ram"
tools.sessions.storage_path = "/home/dmitry/test/sessions"
tools.sessions.timeout = 60
tools.sessions.name = "test"
什么可能导致这种特定于浏览器的问题?
答案 0 :(得分:0)
我想现在你已经找到了解决方案,但一个可能的原因可能是开发服务器在localhost上运行,并且chrome拒绝设置cookie。您必须设置例外才能使其正常工作。在Google上搜索此问题会带来一些有希望的结果。