我必须使用跨域ajax,而我无法更改的服务器配置是
Access-Control-Allow-Origin:*
当我设置withCredentials = true
使用 ajax 和 cookie 时,我会得到一个错误:
当凭证标志为真时,不能在 Access-Control-Allow-Origin 中使用通配符。
当我设置
setRequestHeader("Cookie", 值)
发生错误
拒绝设置不安全的标头“Cookie”
有没有其他方法可以将 ajax 与 cookie 一起使用?