如何在chrome打包应用程序上使用xmlhttp请求

时间:2013-10-01 12:31:00

标签: google-chrome-app

当我尝试使用xmlhttprequest时出现此错误,请告诉我如何解决。

  

“因为它违反了以下内容安全策略指令:   “default-src'self'”。请注意,未明确设置'connect-src',   所以'default-src'用作后备。“

                    var xmlhttp =   new XMLHttpRequest();
         xmlhttp.onreadystatechange=function()
          {
          if (xmlhttp.readyState==4 && xmlhttp.status==200)
            {
           var resp     =   xmlhttp.responseText;   

            }
          }
        xmlhttp.open("POST",myserviceURL,true);
        xmlhttp.send();         

注意:我在清单权限列表中添加了该URL。

此致 Chandru。

1 个答案:

答案 0 :(得分:0)

确保您已在清单文件中指定了访问服务URL的权限。您需要列出要访问的每个URL。

在Github上的chrome-app-samples中查看我们的GDrive示例。

https://github.com/GoogleChrome/chrome-app-samples