我有一个包含一些输入字段和一个提交按钮的表单。当我点击进入提交处理程序触发器。当它快完成时,我就这样清理表格:
this.changeForm.$setUntouched();
this.changeForm.$setPristine();
我清除了表单,但我所在的最后一个字段是仍然专注。如何将表格清除到一个全新的状态?或者如何从表单字段中失去焦点?
答案 0 :(得分:0)
我还没有尝试过,但你可以尝试一下吗
//"focusedInputField" property of changeForm is the currently focused field
this.changeForm.focusedInputField.blur();
this.changeForm.$setUntouched();
this.changeForm.$setPristine();