当前位置:主页 > 网页前端 > vue >

详解Vue用axios发送post请求自动set cookie

时间:2021-06-08 07:46:53 | 栏目:vue | 点击:

vue-resource不再维护之后,我也用起了axios,但是死活无法设置服务器发送过来的cookie

后来查询文档发现,这个是要单独配置的。

// `withCredentials` indicates whether or not cross-site Access-Control requests
// should be made using credentials
withCredentials: false, // default

当我们把此配置项设置成默认配置项并且设置成true的时候,axios就可以设置cookies了。

全局默认配置设置方法:

axios.defaults.withCredentials=true

您可能感兴趣的文章:

相关文章