Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
978 views
in Technique[技术] by (71.8m points)

windows 8 - WinJS.xhr local network error

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...