标签: cookies xmlhttprequest axios fetch
Axios中是否有一种方法,无论请求是否在同一域下发出,都不会发送cookie?
提取具有credentials: "omit"选项,即使您是同一域请求,该请求也可以发送请求而不发送身份验证cookie。
credentials: "omit"
Axios基于XMLHttp请求而不是Fetch。在XMLHttp Request中,最接近的属性是withCredentials: false,根据documentation,在相同域的请求中将忽略该属性。
withCredentials: false