我正在使用Visual Studio 2015和ionic,我已经能够为Windows Phone 8.1构建。我创建了一个登录页面,用于查询不同服务器上的php,但是我遇到了类似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");
});
});
};