chrome 扩展上的 Access-Control-Allow-Origin

我正在制作一个从我自己的服务器中提取数据的 Chrome 扩展程序.它一次使用大约 4 个 httpRequest,但有时我会收到如下控制台错误:

I'm making a Chrome extension which pulls data from my own server. It uses about 4 httpRequests at a time, but sometimes I get console error as follows:

XMLHttpRequest 无法加载 http://apps.radiionsm.lv/apps/system/index.php?request=now.Access-Control-Allow-Origin 不允许来源 chrome-extension://egkddfmbidfobhchndockbhjancbpfkd. 对每个人来说有时都不允许.

XMLHttpRequest cannot load http://apps.radionsm.lv/apps/system/index.php?request=now. Origin chrome-extension://egkddfmbidfobhchndockbhjancbpfkd is not allowed by Access-Control-Allow-Origin. for everyone sometimes no.

如果我发送 header('Access-Control-Allow-Origin: *'); 这会解决它吗?

If I send header('Access-Control-Allow-Origin: *'); will this fix it?

推荐答案

https://developer.chrome.com/extensions/xhr

通读该文档并检查您的权限是否已正确设置.

Read through that documentation and check that your permissions have been setup correctly.

相关文章