为了解决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: *');