WinJS.xhr local network error

醉酒当歌 提交于 2019-12-18 08:47:09

问题


I am trying to make a simple windows 8 app but I have a problem. When I try to make a xhr request to a local webserver it fails with the error code: 0x2efd

Sample code:

WinJS.xhr({ url: "http://192.168.0.30" }).then(
    function completed(response) {
        //var json = JSON.parse(response.responseText);
        //var list = new WinJS.Binding.List(json.results);

        console.log(response.responseText);
    },
    function error(error) { console.log(error) },
    function progress(progress) { }
);

But when I try a remote IP for instance google.com it works. What is going wrong?


回答1:


Did you declare the "private network" capability in your project's application manifest? Double click your application manifest file - It is located under the capabilities tab.



来源:https://stackoverflow.com/questions/13828426/winjs-xhr-local-network-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!