将多个函数绑定到主干中的同一事件

发布于 2024-12-14 00:47:01 字数 103 浏览 0 评论 0原文

是否可以将添加事件多次绑定到集合。我想在事件触发时调用多个函数。 (我在多个视图中有相同的集合,因此当我添加元素时,我希望触发所有视图的 addview 函数。现在只有最后一个有界的函数触发)

Is it possible to bind an add event to a collection multiple times. I would like to have multiple functions called when the event fires. ( I have the same collection in several views, so when I add the element I would like addview function of all the views to fire. Right now only the last bounded one fires)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软糯酥胸 2024-12-21 00:47:01

是的,一个事件可以有多个绑定。

如果您有:

this.model.bind('add', this.add);
this.model.bind('add', this.add2);

当 add 事件触发时,add 和 add2 都会运行。

yes, It is possible to have multiple bindings to one event.

if you had:

this.model.bind('add', this.add);
this.model.bind('add', this.add2);

both add and add2 would run when the add event fired.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文