我制作了一个Chrome插件,可以在我的服务器上调用PHP脚本,但我不断获得" No' Access-Control-Allow-Origin'标头出现在请求的资源上。"错误。
我在Nginx配置中添加了标题设置,所以我不知道还有什么问题。
location / {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET';
try_files $uri $uri/ /index.html;
}
答案 0 :(得分:1)