我想要
这是对g2a在搜索框中搜索的回复。我试过这个:
$.ajax({
url: url,
type: "GET",
dataType: "jsonp",
success: function (data) {
console.log(data);
}});
但是我收到了一个错误:
jquery-3.2.1.min.js:4 Refused to load the script 'https://www.g2a.com/lucene/search/quick?jsoncallback=jQuery1110048787688104918936_1507980736882&phrase=s&isWholesale=false&cc=PL&skip=&start=0&rows=5&&callback=jQuery32104612888467884788_1507987847332&_=1507987847333' because it violates the following Content Security Policy directive: "script-src 'self' blob: filesystem: chrome-extension-resource:".
正如您所看到的那样,它是一个chrome扩展,所以它不能有一些PHP脚本,可以在网上找到。
答案 0 :(得分:0)
你必须在你的menifest.json中为服务器添加一个条目,如下所示 -
"content_security_policy": "script-src 'self' https://www.g2a.com; object-src 'self'"