我正在使用cordova和angularjs(onsenui前端框架)在android中开发应用程序。 这是我从服务器获取一些数据的获取请求
$http.get(url+"getlotterylist").then(function(msg){
$scope.loading=false;
$scope.items=msg.data;
},
function(err){
alert("error"+JSON.stringify(err));
console.log("Error"+JSON.stringify(err));
}
);
案例1
在浏览器中运行应用程序时,我将获得所需的输出(获取请求正常)。
案例2
在android平台上构建我的应用程序并导入到android studio。 此时,http get请求返回以下错误
{"数据":"""状态":404,"配置" {"方法&#34 ;:" GET"" transformRequest":[空]," transformResponse":[空]," URL":" http://example.com?action=getlotterylist""头" {"接受":"应用/ JSON, text / plain, / "}}," statusText":" Not Found"}"
在我的php中也启用了CORS
<?php
header("Access-Control-Allow-Origin: *");
//api request response
?>
为什么我在手机中运行应用程序时出现此错误?