我正在使用Cordova和Angular JS开发移动应用程序.我的应用程序是一个easyPHP本地主机.
我在index.html中使用Angular Routes和ng view指令.我有这个:
我在index.html中使用Angular Routes和ng view指令.我有这个:
TypeError: Cannot read property ‘get’ of undefined
angular.module('app.controllers',[]) .controller('MainCtrl',['$scope',function ($scope) { $scope.status = "Accueil"; }]) .controller('ViewCtrl',function ($scope,$http) { $http.get('mobile.PHP/getAnnonces/limit=10') .success(function(data,status,headers,config) { $scope.posts = data; }) .error(function(data,config) { // log error }); }]) ...
如果我测试URL,我的脚本返回JSON(使用json_encode).我在哪里错了?
谢谢你的帮助,
问候
尝试改变
原文链接:https://www.f2er.com/angularjs/143117.htmlangular.module('app.controllers','$http',config) { // log error }); }]);
变化:将$http服务作为字符串传递给控制器,以便在运行时解析.