2

我有a.example.com,它为.example.com. 稍后a.example.com发送一个 ajax 请求到b.example.com. 我希望将.example.comcookie 发送到b.example.com. 但事实并非如此。

我确保 cookie 设置在正确的域上,但由于某种原因,它似乎没有在 ajax 请求中发送 cookie。

# server A
res.cookie('images', tokens.images, { expires: config.pageExpiration(), secure: secure, domain: domain })


# server B
req.cookies.image
4

1 回答 1

-1

这是有道理的,因为您不会期望 *.com cookie 混合在一起。如果你真的需要,我建议你通过服务器请求传递你的 cookie。

于 2012-12-12T23:37:45.183 回答