nodejs跨域设置cookie失败,用的core中间件,前端vue用的axios
nodejs怎么才能跨域设置cookie呀,我搜的用cors中间件,设置了之后也不行,不知道是哪里写错了,求大哥们指点一下,谢谢。
这个是cors设置的
app.use(cors({
"origin": ["localhost:8080"], //允许所有前端域名
"credentials":true,//允许携带凭证
"methods": "GET,HEAD,PUT,PATCH,POST,DELETE", //被允许的提交方式
"allowedHeaders":['Content-Type','Authorization']//被允许的post方式的请求头
}));
这个是前端设置的,前端用了代理
axios({
url:"/api/login/loginIn",
params:{tel:this.username,password:this.password},
withCredentials: true
}).then(res=>{
this.$store.state.bool = true;
this.$router.push("/user");
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论