我在一个页面上有一个ng表单。在窗体内部,我有几个控件,当窗体是脏的时,需要显示一个保存对话框,即form。$ dirty = true。但是有一些导航控件的形式我不想弄脏窗体。假设我无法将控件移出表单。
如何使选择框不脏的表单?
以下是使用指令的@ acacia答案的版本,而不是使用$ timeout。这将使您的控制器更清洁。
.directive('noDirtyCheck',function() { // Interacting with input elements having this directive won't cause the // form to be marked dirty. return { restrict: 'A',require: 'ngModel',link: function(scope,elm,attrs,ctrl) { ctrl.$pristine = false; } } });
然后用你的形式使用它:
<input type="text" name="foo" ng-model="x.foo" no-dirty-check>