Home  >  Q&A  >  body text

angular.js - 请问angularjs的路由指定controller时怎么不能直接写controller的名字呢?

这样写起作用:controller: 'loginctrl as loginctrl'
我写controller: 'loginctrl'就不行,怎么回事呢?

PHP中文网PHP中文网2714 days ago425

reply all(1)I'll reply

  • 阿神

    阿神2017-05-15 17:00:46

    ng1.2 introduced controllerAs, which is what you use ctrl as ctrl, mainly to avoid having to inject $scope and the lightweight controller itself.

    If you want to use the original ng-controller. You cannot use this to bind scope, and you have to manually inject $scope.

    reply
    0
  • Cancelreply