本文介绍了Angular2和禁用按钮异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的代码中,我有一个按钮,该按钮在表单无效或不脏时会被禁用.
In my code I have button, that is disabled whenever the form is invalid, or not dirty.
我有:
<button type="submit" [disabled]="!myForm.valid || myForm.dirty" class="save-button">Save</button>
哪个丢给我了
每当有效性/肮脏度发生变化时.
Whenever the validity/dirty changes.
有什么想法吗?
更新
启用生产模式后,它会起作用:
It works when I enable production mode:
enableProdMode()
推荐答案
我认为这也将达到目的.
I think this will serve the purpose as well.
[disabled]="!myForm.valid || !myForm.dirty"
这篇关于Angular2和禁用按钮异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!