我正在使用Ionic框架开发Android app.simple json文件无法在我的应用程序中运行!相同的应用程序只使用本地浏览器,当我在我的手机上运行时,这个应用程序不使用$ http在json文件上运行。我收到这个错误,
获取http://localhost:8383/LoginCtrl/www/js/namerecords.json net :: ERR_CONNECTION_REFUSED
How to work with json file in mobile,below i attached my code.
Controller.js
app.controller('recordsCtrl',function($scope,$http){
$http.get('http://localhost:8383/LoginCtrl/www/js/namerecords.json')
.success(function(response){
console.log(response.records);
$scope.persons = response.records;
});
});
答案 0 :(得分:0)
由于服务器未在您的手机中运行,因此您需要将URL更改为服务器的地址,而不是“localhost”。
希望这会有所帮助......
答案 1 :(得分:0)
1. $ http链接不正确 2.如果您在离子框架中检查API。仅限移动设备。在网络浏览器中无法使用api内容。只能移动。