我设置了
document.cookie='username=hello'
无效
大家是如何设置的?
前端域是:localhost:8080
后端是:127.0.0.1:8000
后端已经设置允许跨域,前端已设置可携带凭证
本地存储里我看了下是有的,请求头里没有
我设置了
document.cookie='username=hello'
无效
大家是如何设置的?
前端域是:localhost:8080
后端是:127.0.0.1:8000
后端已经设置允许跨域,前端已设置可携带凭证
本地存储里我看了下是有的,请求头里没有
document.cookie='username=hello'
然后再发起请求,正常来讲,这个是不能被用户修改的。
5 回答2.5k 阅读
1 回答1.2k 阅读✓ 已解决
2 回答1.9k 阅读
1 回答1.5k 阅读
1 回答1.5k 阅读
1 回答910 阅读
1 回答669 阅读
axios请求默认是不携带cookie的,让了让其带上cookie,需要做一些设置。
axios.defaults.withCredentials=true