Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将会话存储在 MongoDB 中,使用 ('connect-mongo')(express)
当我使用 chrome 浏览器时:在 mongoDB 中只创建了一个带有 id 和 coockie 信息的会话。
当我使用 IE10 时:在 mongoDB 中创建了 7 个带有 id 和 coockies 的会话。
使用 req.session._csrf 时,连接 _csrf 在 IE10 中也不起作用。
请帮忙。
解决了。问题是使用 Cloud9 在线文本板启动我的节点项目的原因,它使用 8080 端口和代理。所以 IE 10 在这种情况下会打开几个会话。在我尝试在 80 端口上的本地计算机上启动后,一切正常。