立即禁用整个表单(Angular reactive form)

立即禁用整个表单(Angular reactive form),第1张

概述有没有办法在使用Reactive表单时以角度禁用整个表单.我知道可以逐个禁用它们. this.tempForm = this.fb.group({ m26_type: '', m26_name: '' })this.tempForm.get('m26_type').disable(); 是否可以禁用整个表单而不是单独禁用每个控制器? this.tempForm.disable(); 有没有办法在使用Reactive表单时以角度禁用整个表单.我知道可以逐个禁用它们.

this.tempForm = this.fb.group({  m26_type:  '',m26_name:  '' })this.tempForm.get('m26_type').disable();

是否可以禁用整个表单而不是单独禁用每个控制器?

解决方法
this.tempForm.disable();

disables the control. This means the control will be exempt from
valIDation checks and excluded from the aggregate value of any parent.
Its status is Disabled.

If the control has children,all children will be Disabled to maintain
the model.

LINK

UPDATE

Plunker链接 – https://plnkr.co/edit/CFC4uKpvfE4otJ2PWdkc?p=preview

总结

以上是内存溢出为你收集整理的立即禁用整个表单(Angular reactive form)全部内容,希望文章能够帮你解决立即禁用整个表单(Angular reactive form)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1087180.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存