为什么在指示角JS中不工作两种绑定方式



我使用指令:

 return {
   restrict: 'E',
     scope: {
         isread: "=isread"
     ,....
     templateUrl: 'list.html',

其中list.html是:

<span ng-show="isread"></span>

和我称为指令的父trmplate:

<div class="top-menu" ng-controller="NotificationController">
  <notification-list isread="is_read"></notification-list>
</div>

NotificationController

scope.makeRead = function() {
  $scope.is_read = true;
}

为什么当我在控制器中更改$scope.is_read = true;时,它在变量isread中没有更改指令?

return {
 restrict: 'E',
 scope: {
     isread: "="
 ,....
 templateUrl: 'list.html',

相关内容

  • 没有找到相关文章

最新更新