详解Vue用axios发送post请求自动set cookie
zhalcie2011 人气:0vue-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
加载全部内容