私は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");
});
});
};