手机上无法完成$http 请求
代码很简单
controller.js
var app = angular.module('app', []);
app.controller('MenuCtrl', ['$scope','$http',
function ($scope,$http) {
$http.get('ajaxlist').success(function(respons){
$scope.data = respons;
})
}])
请求的地址是 php 脚本. 会返回一个 json 数组
index.html
<div class="modal-body" ng-controller="MenuCtrl" >
<ul class="list-group">
<li ng-repeat="item in data" class='list-group-item'>
{{item.name}}
</li>
</ul>
</div>
在 web 端没有任何问题 正常取到数据 并填入到 ul 列表中
但是在手机中访问, 却始终无法取得数据. 用 Jquery.AJAX() 效果也一样
无法调试 .
服务器是配置在本地的 apache .
求解!!!