1

HTML:

<html ng-app="app">
<div class="container" style="margin-top: 30px">
  <input type="text" ng-model="newName" key-filter/>
  <input type="text" ng-model="newName" key-filter/>
  <input type="text" ng-model="newName" key-filter/>
  <input type="text" ng-model="newName" key-filter/>
</div>
</html>

JS:

var app = angular.module('app', []);
app.directive('keyFilter', function() {
  var pattern = /([\s !$%^&*()_+|~=`{}\[\]:";'<>?,.\/])/;
  function link(scope) {
    scope.$watch('model', function() {
      if(scope.model === undefined)
        return
      if(pattern.test(scope.model)) {
        scope.model = scope.model.replace(pattern, '');
        Materialize.toast('Denied symbol', 4000, 'rounded');
      }
   });
  }
  return {
    restrict: 'A',
    scope: {
      model: '=ngModel'
    },
    link: link
  }
});

我有许多绑定到同一模型的输入,并且我正在过滤用户输入,当用户按下拒绝键时,我想显示一个 toast 以通知他他不能使用这个符号,但是 toast 的计数是相等的输入的计数绑定到同一模型。我以为我只使用一个模型。

此处示例: http ://codepen.io/anon/pen/XbLjVY?editors=101

我该如何解决这个问题,或者改变它的工作逻辑

ps 角度初学者

4

1 回答 1

2

如果它们都绑定到同一个模型,则其中的每个更改都会发送给其他模型,因此只需将指令放在一个输入上,而不是全部。

这是一个有效的 plunkr: http ://plnkr.co/edit/dI5TMHms2wsPHc9Xqewf?p=preview

使用 :

  <input type="text" ng-model="newName" key-filter/>
  <input type="text" ng-model="newName" />
  <input type="text" ng-model="newName" />
  <input type="text" ng-model="newName" />

您可以在控制台中看到消息仅显示一次,并且来自任何输入字段

于 2015-08-20T09:10:55.437 回答