如何表示AngularJS中哪些输入字段已更改

前端之家收集整理的这篇文章主要介绍了如何表示AngularJS中哪些输入字段已更改前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编辑表单(user.html)将数据PUT到API,但我想避免PUT所有的数据在窗体中。我想只更改项目。

我已经看到在使用形式时使用dirty和pristine,但这适用于形式的任何更改。我也看到使用ng-change,但我不想触发对一个元素的更改的操作,只是表示更改的元素应该包含在PUT中。

任何人发现一种方式只表示已更改的输入字段?

如果将输入放在具有name属性的表单中,然后为输入指定name属性,那么还可以访问输入的$ pristine属性
<div ng-controller="MyController">
  <form name="myForm">
    <input type="text" name="first" ng-model="firstName">
    <input type="text" name="last" ng-model="lastName">
  </form>
</div>
app.controller('MyController',function($scope) {
  // Here you have access to the inputs' `$pristine` property
  console.log($scope.myForm.first.$pristine);
  console.log($scope.myForm.last.$pristine);
});

您可以使用$ scope.myForm。$ pristine查看是否有任何字段已更改,并在表单上的每个输入属性上使用$ pristine属性,以查看该输入是否已更改。你甚至可以迭代myForm对象(非输入字段对象的键前缀为$):

angular.forEach($scope.myForm,function(value,key) {
  if(key[0] == '$') return;
  console.log(key,value.$pristine)
});
// first,true
// last,false
原文链接:https://www.f2er.com/angularjs/145243.html

猜你在找的Angularjs相关文章