1

我有一个连接到模型的输入。此外,输入具有$watch模型的指示。

模型有两种变化方式。

  1. 用户将在文本框中输入。
  2. 代码会改变它(不管是什么原因)

我的问题是

有没有办法在指令中找出谁更改了模型、用户交互或代码?

例子:

angular.module('app', [])
.controller('ctrl', function($scope) {

})
.directive('dir', function($rootScope){
  return {
    require: 'ngModel',
    link: function(scope, element, attrs) {
      $rootScope.logs = [];
      scope.$watch(attrs.ngModel, function() {
        // here I need to check if the change was from the UI or from the controller
        
        $rootScope.logs.push('change');
      });
    }
  }
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<div data-ng-app="app" data-ng-controller="ctrl">
  <input type="text" data-ng-model="model" data-dir="" />
  <button data-ng-click="model = 'asd'">Set "model" to defferent value</button>

  {{model}}
  <hr />
  <h3>console <button data-ng-click="$root.logs = []">clear console</button></h3>
  <ul>
    <li data-ng-repeat="log in $root.logs track by $index" data-ng-bind="log"></li>
  </ul>
</div>

http://jsbin.com/vufawur/edit?html,js,输出

更新

示例 2:

angular.module('app', [])
.controller('ctrl', function($scope, $timeout) {
  $timeout(function() {
      $scope.model = 'asd';
  }, 3000);
})
.directive('dir', function($rootScope){
  return {
    require: 'ngModel',
    link: function(scope, element, attrs) {
      $rootScope.logs = [];
      scope.$watch(attrs.ngModel, function() {
        // here I need to check if the change was from the UI or from the controller

        $rootScope.logs.push('change');
      });
    }
  }
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<div data-ng-app="app" data-ng-controller="ctrl">
  ...wait until data "return from the server"<br />
  <input type="text" data-ng-model="model" data-dir="" />
  
  {{model}}
  <hr />
  <h3>console <button data-ng-click="$root.logs = []">clear console</button></h3>
  <ul>
    <li data-ng-repeat="log in $root.logs track by $index" data-ng-bind="log"></li>
  </ul>
</div>

4

2 回答 2

2

ext-change外部变更指令ng-model

使用 a$viewChangeListener保存最后的用户输入,并让 watch 处理程序进行比较,以区分对模型的外部更改和对模型的用户输入更改。

.directive('extChange', function(){
  return {
    require: 'ngModel',
    link: function(scope, element, attrs, modelCtrl) {
        var lastUserInput = modelCtrl.$viewValue;
        modelCtrl.$viewChangeListeners.push(function() {
            lastUserInput = modelCtrl.$viewValue;
        });
        scope.$watch(attrs.ngModel, function watchHandler (value) {
            if (value!==lastUserInput) {
                scope.$eval(attrs.extChange, {$value:value});
            }                
        });
    }
  }
});

示例指令保存最后的用户输入。当 watch 处理程序获得一个不同的值时,它会调用该ext-change属性定义的 Angular 表达式。更改的值显示为$value

<input ng-model="someInput"
       ng-change="userInput=someInput"
       ext-change="extInput=$value">

ext-change指令与ng-model指令一起使用并补充ng-change指令。

在此示例中,ext-change指令仅更新extInput模型外部更改的变量。该ng-change指令仅更新userInput用户更改的变量。

JSFiddle 上的DEMO


该指令还可用于调用函数。

<input ng-model="someInput"
       ng-change="userEvent(someInput)"
       ext-change="externalEvent($value)">
于 2016-03-02T22:50:04.997 回答
1

不要使用$watch. 你不应该使用它,你必须不使用它,如果你使用它就会有麻烦$watch,你已经有麻烦了,不要使用它。

使用控制流和事件。有可能你已经有很多watcher和scope汤了,现在还不晚,尽快重构,对你最好。

angular.module('app', [])
  .controller('ctrl', function($scope) {

  })
  .directive('dir', function($rootScope) {
    return {
      require: 'ngModel',
      link: function($scope, element, attrs) {
        $rootScope.logs = [];

        $scope.modelChange = function(reason) {
          $rootScope.logs.push(reason);
        };

        $scope.modelChangedFromInput = function(model) {
          $scope.modelChange('From input');
        };

        $scope.buttonClick = function() {
          $scope.model = 'asd';
          $scope.modelChange('From button');
        };
      }
    }
  });
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<div data-ng-app="app" data-ng-controller="ctrl">

  <input type="text" data-ng-model="model" data-dir="" data-ng-change="modelChangedFromInput()" />

  <button data-ng-click="buttonClick()">Set "model" to different value</button>

  {{model}}
  <hr />
  <h3>console <button data-ng-click="$root.logs = []">clear console</button>
  </h3>
  <ul>
    <li data-ng-repeat="log in $root.logs track by $index" data-ng-bind="log"></li>
  </ul>
</div>

于 2016-03-02T14:23:14.813 回答