繁体   English   中英

Angularjs指令的模板更新,但链接没有

[英]Angularjs directive's template updates, but link does not

我有一个带有2种方式的数据绑定范围的指令 ,如下所示:

app.directive('channelStar', function() {
  return {
    restrict: "E",
    template: 'This works fine : {{count}}',
    scope: {
      count: '='
    },
    link: function(scope, element, attrs) {
      // count is showing in template, but doesn't get updated here
      // actually it logs old scopes value
      console.log(scope.count);
    }
  }
});

在我的路由模板中(使用ui-router和嵌套状态):

<channel-star count="selectedChannel[0].channel_dir_members"></channel-star>

控制器:

httpService.request(...).then(function(result){
    $scope.selectedChannel = result.data;
    $rootScope.selectedChannel = result.data;
    // $scope.$applyAsync();
    // $rootScope.$applyAsync();
})

任何想法?

link函数只能运行一次,如果要处理其新值,则可以使用scope.$watch监视count

scope.$watch('count', function(newValue, oldValue) {
  if(newValue){
     //do something
  }
}, true);     // here parameter true is for deep compare objects, no need to use it when just for string

您还可以在指令中使用以下代码。 scope。$ apply(function(){});

参见以下链接以获取更多信息: https : //thinkster.io/a-better-way-to-learn-angularjs/scope-vs-scope

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM