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 角度初学者