使用XHR凭据时,cookie会保存在哪里?

时间:2019-05-24 21:30:37

标签: express cookies xmlhttprequest google-chrome-devtools

在Express中,我使用cors允许来源和凭据(将标头Access-Control-Allow-Credentials设置为true)。

在XHR请求中,我使用的是withCredentials = true

最后,在Express中,我使用res.cookie(...)

当我在服务器上登录req.headers时,可以看到以前使用XHR设置的cookie。

但是在Chrome的开发工具中,没有cookie。它说:应用程序使用0 B。

我在哪里可以在Chrome中看到该Cookie?为什么它与其他Cookie不在同一个地方?

如果我使用Postman,则可以很好地看到Set-Cookie响应以及cookie本身。在Chrome浏览器中,我什么也看不到。

enter image description here

enter image description here

0 个答案:

没有答案