2016-04-09 146 views
0

私はVisual studio 2015とionicを使用しており、Windows Phone 8.1用にビルドすることができました。私は別のサーバー上のPHPを照会するログインページを作成しましたが、このような問題が発生します。SCRIPT7002:XMLHttpRequest:ネットワークエラー0x2efd、エラー00002efdのために操作を完了できませんでした。 index.html エラー。勝つ8電話アプリケーションを構築しているときにこのエラーが直面しているとき
要求をしようと私のコードはSCRIPT7002:XMLHttpRequest:ネットワークエラー0x2efd、エラー00002efdのため、操作を完了できませんでした。 index.html

var login = function(name, pw) { 
     return $q(function(resolve, reject) { 
      $http.post('http://192.167.180.1//logn/sear.php',{ 'pin': pw }).then(
     function(result) { 
     // No result here.. 
     var re=result.data.split(","); 
     console.log(re[3]); 
     if ((re[0] == 0)) { 
     // Make a request and receive your auth token from your server 
     storeUserCredentials(re[2]); 
     useCredentials(re[1]+" "+re[3]+" "+re[4]); 
     console.log(LOCAL_TOKEN_KEY); 
     resolve('Login success.'); 
     } else if(result.data == 1) { 
     reject('Login Failed.'); 
     } 


     }, function(err) { 
     // $scope.response = err.records; 
     console.log("error"); 

     }); 


    }); 

    }; 

答えて

0

である、あなたはマニフェストのアプリにプライベートネットワーク機能を追加したい場合があります。 - そこにあなたがそれを行う方法をステップバイステップの指示を見つけることができますhttps://sonyarouje.com/tag/network-error/ を:私を助けた男のための

クレジット。

SOでこれを行う方法もあります。 WinJS.xhr: Network Error 0x2efd, Could not complete the operation due to error 00002efd