angularjs – 不能用Angular读取未定义的属性“get”

前端之家收集整理的这篇文章主要介绍了angularjs – 不能用Angular读取未定义的属性“get”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Cordova和Angular JS开发移动应用程序.我的应用程序是一个easyPHP本地主机.
我在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).我在哪里错了?

谢谢你的帮助,

问候

尝试改变
angular.module('app.controllers','$http',config) {
          // log error
    });
}]);

变化:将$http服务作为字符串传递给控制器​​,以便在运行时解析.

原文链接:https://www.f2er.com/angularjs/143117.html

猜你在找的Angularjs相关文章