Chrome 扩展,Jquery ajax 失败

发布于 2024-11-06 22:04:19 字数 581 浏览 1 评论 0 原文

我正在尝试为自己编写一个 chrome 扩展,其中包含以下几行似乎失败了:

fk_url = "http://www.flipkart.com/search-books?query=" + search + "algorithms&from=all";
$.get(fk_url);

并且,当我的扩展运行时,它给了我这个错误:

XMLHttpRequest 无法加载 http://www.flipkart.com/search-books?query=algorithmsalgorithms&from=all。 Access-Control-Allow-Origin 不允许 Origin chrome-extension://cpepfejkgdnhemablbikonijfjnjmnha

我完全不知道如何解决这个问题。有什么帮助吗? (我尝试连接的网站不提供 API)

I'm trying to write myself a chrome extension, and I have the following lines in it that seem to be failing:

fk_url = "http://www.flipkart.com/search-books?query=" + search + "algorithms&from=all";
$.get(fk_url);

And, when my extension is run, it gives me this error:

XMLHttpRequest cannot load http://www.flipkart.com/search-books?query=algorithmsalgorithms&from=all. Origin chrome-extension://cpepfejkgdnhemablbikonijfjnjmnha is not allowed by Access-Control-Allow-Origin.

I'm totally lost as to how I can fix this. Any help? (The website I'm trying to connect to does not offer an API)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九八野马 2024-11-13 22:04:19

您的 manifest.json 文件应包含您要在权限中使用的域:

"permissions": [
    "http://*.flipkart.com/"
]

Your manifest.json file should have the domain you're looking to use in the permissions:

"permissions": [
    "http://*.flipkart.com/"
]
十级心震 2024-11-13 22:04:19

如果他们不提供 API,恐怕您就很难使用 Chrome 扩展程序了。您不能只是通过 AJAX 请求来自任何域的任何资源(除非它们允许您访问:https://developer .mozilla.org/en/http_access_control)。

有关更多详细信息,请阅读http://en.wikipedia.org/wiki/Same_origin_policy

If they don't offer an API, you're pretty much out of luck with a Chrome extension, I'm afraid. You can't just AJAX-request any resources from any domain (unless they allow you access: https://developer.mozilla.org/en/http_access_control).

For more details, read http://en.wikipedia.org/wiki/Same_origin_policy

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文