tions的angular的updateOn属性支持的完整事件列

tions的angular的updateOn属性支持的完整事件列

本文介绍了ngModelOptions的angular的updateOn属性支持的完整事件列表是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

该页面提到了一些事件: blur 默认提交。还有其他人吗?完整列表是否记录在任何地方?

The page mentions a few events: blur, default, submit. Are there any others? Is the full list documented anywhere?

推荐答案

据我所知,您可以将任何可用的DOM事件绑定到 updateOn 属性。查看完整列表。

As far as i know, you can bind any available DOM event to the updateOn property. see a full list here.

查看 ngModel 的来源,可以看到传递给 updateOn 的选项将被绑定到实际元素本身。

Having a look at the Source of ngModel, you can see that the options passed to updateOn will get bound to the actual element itself.

Angular来源:

Angular Source:

if (modelCtrl.$options.getOption('updateOn')) {
  element.on(modelCtrl.$options.getOption('updateOn'), function(ev) {
    modelCtrl.$$debounceViewValueCommit(ev && ev.type);
  });
}

这篇关于ngModelOptions的angular的updateOn属性支持的完整事件列表是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 07:51