angularjs – Angular Controller As Syntax-no method’$watchCollection’

前端之家收集整理的这篇文章主要介绍了angularjs – Angular Controller As Syntax-no method’$watchCollection’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在Angular中将Controller作为语法.在这一点上,我在我的routerProvider中有它…不确定它对我遇到的问题是否重要,但在这里它仍然是:

angular.module('ucp.kick',[
  'ngRoute'
])
.config ($routeProvider,APP_BASE_URL) ->
  $routeProvider
  .when APP_BASE_URL + 'kicks',name: 'Kicks'
    templateUrl: 'kick/partials/kick.html'
    controller: 'kick as KickController'

这是我的控制器的浓缩版本:

this.$watchCollection('filtered.devices',function(devices) {
    return this.filteredDevices = devices;
  });

但我得到:

TypeError: Object [object Object] has no method '$watchCollection'

我意识到当使用控制器作为语法时,您不希望注入范围.那么,我如何访问$watchCollection函数

解决方法

你仍然需要注入$scope才能使用$watch和$watchCollection.现在,你会认为你可以这样做:

$scope.$watchCollection('filtered.devices',function (newVal,oldVal) {});

要么

$scope.$watchCollection('this.filtered.devices',oldVal) {});

但那不行.所以你需要做:

var that = this;
$scope.$watchCollection(function () {
    return that.filtered.devices;
},oldVal) {

});

要么:

$scope.$watchCollection(angular.bind(this,function () {
    return this.filtered.devices;
}),oldVal) {

});

要么:

$scope.$watchCollection("KickController.filtered.devices",function(newVal,oldVal) { });

猜你在找的Angularjs相关文章