我已经获取了一个 AngularJS 网页,该网页能够使用 GET 调用我的 REST 服务,并将此代码放入我的 Android/Phonegap 项目中,并且不会调用其余服务。
所以下面的代码可以独立工作,但不能在电话应用程序中
$http.get('http://localhost:40884/api/sampleapi/get').success(function (data) {
alert("cool");
$scope.posts = data;
$scope.loading = false;
})
.error(function (request, status, error) {
alert("err");
console.log(data);
$scope.error = "An Error has occured while loading posts!";
$scope.loading = false;
});
我检查了清单有
res/config.xml 文件有
<access origin="*"/> <!-- allow local pages -->
但这些并没有什么不同。试图追踪请求、状态、错误变量仅检索错误变量的 0。
任何关于在这里尝试什么的想法表示赞赏
干杯
米