1

我必须使用跨域ajax,而我无法更改的服务器配置是

Access-Control-Allow-Origin:*

当我设置withCredentials = true使用 ajax 和 cookie 时,我会得到一个错误:

当凭证标志为真时,不能在 Access-Control-Allow-Origin 中使用通配符。

当我设置

setRequestHeader("Cookie", 值)

发生错误

拒绝设置不安全的标头“Cookie”

有没有其他方法可以将 ajax 与 cookie 一起使用?

4

1 回答 1

0

询问有权访问的人,将 * 更改为 $_SERVER['HTTP_ORIGIN']。

于 2015-09-30T14:45:59.277 回答