angularjs – 使用$routeParams时angular.js模块化控制器“undefined”

前端之家收集整理的这篇文章主要介绍了angularjs – 使用$routeParams时angular.js模块化控制器“undefined”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下命令在控制台中返回错误“ReferenceError:未定义ThingCtrl”
var myApp = angular.module('myApp',[]);

myApp.config(['$routeProvider',function($routeProvider) {
$routeProvider.
    when('/things',{templateUrl: 'partial.html',controller: ThingCtrl}).
    when('/things/:id',{templateUrl: 'detail.html',controller: ThingCtrl}).
otherwise({redirectTo: '/things'});
 }]);

myApp.controller('ThingCtrl',['$scope','$routeParams',function($scope,$routeParams) {
$scope.thing = [
    {
        'title':'first thing','first':'one','second': 'two','third': 'three'
    }
];

}]);

但是当控制器被定义为:

function ThingCtrl($scope,$routeParams) {
        $scope.thing = [
    {
        'title':'first thing','third': 'three'
    }
  ]
};

为什么使用模块化语法不起作用?

我相信这个问题在这里:
when('/things',controller: ThingCtrl})

这告诉Angular指向ThingCtrl对象,该对象未定义并导致错误.

尝试将控制器名称括在引号中,如下所示:

when('/things',controller: 'ThingCtrl'})

这应该允许Angular正确使用依赖注入.

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

猜你在找的Angularjs相关文章