如果我设置了X-XSRF-TOKEN
Cookie服务器端,是否需要设置任何内容来发送XSRF-TOKEN
头?
https://github.com/axios/axios/blob/master/lib/defaults.js#L74 https://github.com/axios/axios/blob/master/dist/axios.js#L1072
读取的内容好像不是,但我看不到有人出去。
我要补充一点,是我已将withCredentials
设置为true,所以我的确符合OR中的第一个要求:
var xsrfValue = (config.withCredentials || isURLSameOrigin(config.url)) && config.xsrfCookieName ?
cookies.read(config.xsrfCookieName) :
undefined;
if (xsrfValue) {
requestHeaders[config.xsrfHeaderName] = xsrfValue;
}
因此,如果config.xsrfCookieName
是默认值.....
更新:
因此,我的OPTIONS
预检CORS
正在工作,就像现在的POST
一样,但是没有X-XSRF-TOKEN
被发送。
methods: {
onSubmit(e) {
this.axios
.post(
e.target.action,
{ data: this.form },
{
withCredentials: true,
xsrfCookieName: "XSRF-TOKEN",
xsrfHeaderName: "X-XSRF-TOKEN"
}
)
.then(res => {
console.log(res)
})
.catch(err => {
this.errors.push(err)
})
}
}
谢谢。