本文介绍了如何在角度2中的模糊上更新表单模型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在角度2中有与此等效的东西吗?
Is there an equivalent to this in angular 2?
ng-model-options="{ updateOn: 'blur' }"
谢谢
推荐答案
在Angular 2中,您可以使用本机DOM事件
In Angular 2 you can use the native DOM events
<input (blur)="someMethod()" />
现在,只需定义一种方法即可在字段模糊时执行所需的操作
Now, just define a method that does what you need when the field is blurred
这篇关于如何在角度2中的模糊上更新表单模型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!