angular – 检测表单中的数据是否已更改

前端之家收集整理的这篇文章主要介绍了angular – 检测表单中的数据是否已更改前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有Angular形式(不反应),在ngModel中绑定数据:
<form #form="ngForm">
  <input [(ngModel)]="user.name">
  <input [(ngModel)]="user.color">

  <button type="submit">Save</button>
 </form>

如果绑定数据未更改,如何禁用提交按钮?

这样做,检查脏标志,告诉表格是否脏
<button type="submit"  [disabled]="!form.dirty">Save</button>

如果您更改其中的某个值,表单将变脏.

点击此处查看详细信息:https://angular.io/guide/forms

原文链接:https://www.f2er.com/angularjs/140245.html

猜你在找的Angularjs相关文章