本文介绍了如何以编程方式将Angular 2表单控件设置为dirty?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在代码中将Angular 2控件标记为脏?
How do I mark an Angular 2 Control as dirty in my code?
当我这样做时:
control.dirty = true;
我收到此错误:
Cannot set property dirty of #<AbstractControl> which has only a getter
推荐答案
您应使用markAsDirty
方法,如下所示:
You should use the markAsDirty
method, like this:
control.markAsDirty();
这还会将所有直接祖先标记为肮脏,以维护模型.
This will also mark all direct ancestors as dirty to maintain the model.
这篇关于如何以编程方式将Angular 2表单控件设置为dirty?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!