作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以这种形式为例http://plnkr.co/edit/fHEBw6dDdG3IVgnmCLb7?p=preview
我怎样才能把 $pristine
SAVE DRAFT
之后表单的状态为真按钮被按下?
最佳答案
您可以调用 $setPristine
在 form
: http://plnkr.co/edit/wXaFXtuhNH6d4SP2uArm?p=preview
<button ng-click="reset(); form.$setPristine()">RESET</button>
<button ng-click="update(user); form.$setPristine()">SAVE</button>
$scope.update = function(user) {
$scope.master= angular.copy(user);
if ($scope.form) $scope.form.$setPristine();
};
$scope.reset = function() {
$scope.user = angular.copy($scope.master);
if ($scope.form) $scope.form.$setPristine();
};
关于forms - AngularJs 提交表单并重置 $pristine 状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20490958/
我是一名优秀的程序员,十分优秀!