为了解决CORS问题,我在那儿写了
header('Access-Control-Allow-Origin: *'); header('Access-Control-Allow-Methods: GET, POST'); header("Access-Control-Allow-Headers: X-Requested-With");
在我的服务器站点中
但是在我的开发过程中,我看到了这个错误
The 'Access-Control-Allow-Origin' header contains multiple values '*, *', but only one is allowed. Origin 'http://localhost' is therefore not allowed access.
我以为allow-origin:*会解决一切吗?但是为什么说标头包含多个值?
意外两次启用CORS时,这是一个常见问题。检查以确保未在apache中启用它,或者未设置标头两次。作为健全性检查,您可以尝试删除标头并将其重新添加回去,然后再提供响应。
例如:
header_remove('Access-Control-Allow-Origin'); header('Access-Control-Allow-Origin: *');