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)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)