gpt4 book ai didi

javascript - jQuery:为什么触发器不会从 JS 对象触发?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:37:20 25 4
gpt4 key购买 nike

我一直在使用 jQuery 实现一种发布者/订阅者设计模式。我基本上是使用 CoffeeScript 在 Javascript 中构建类,这些类作为我页面上的组件。即导航、数据列表等。

我没有让 DOM 元素触发事件,而是让这些类的实例在自身上使用触发器来发送自定义事件。然后这些实例可以相互监听,并可以根据彼此行为的变化相应地更新它们拥有的 DOM 元素!

我知道这是有效的,因为我有一个组件可以正确分派(dispatch)自定义事件。但是,我遇到了障碍。我已经创建了另一个组件,但我一直无法弄清楚为什么它的事件没有被触发。

这是我的类的实现:

window.List = (function() {
List = function(element, settings) {
var _a, _b, _c;
this.list = $(element);
this.settings = jQuery.extend(List.DEFAULTS, settings);
this.links = this.list.find(this.settings.link_selector);
this.links.selectable();
_b = [SelectableEvent.COMPLETED, SelectableEvent.UNDONE, SelectableEvent.SELECTED, SelectableEvent.DESELECTED];
for (_a = 0, _c = _b.length; _a < _c; _a++) {
(function() {
var event_type = _b[_a];
return this.links.bind(event_type, __bind(function(event, selectable_event) {
return this.dispatch(selectable_event);
}, this));
}).call(this);
}
return this;
};
List.DEFAULTS = {
link_selector: "a",
completed_selector: ".completed"
};
List.prototype.change = function(mode, previous_mode) {
if (mode !== this.mode) {
this.mode = mode;
if (previous_mode) {
this.list.removeClass(previous_mode);
}
return this.list.addClass(this.mode);
}
};
List.prototype.length = function() {
return this.links.length;
};
List.prototype.remaining = function() {
return this.length() - this.list.find(this.settings.completed_selector).length;
};
List.prototype.dispatch = function(selectable_event) {
$(this).trigger(selectable_event.type, selectable_event);
return alert(selectable_event.type);
};
return List;
}).call(this);

注意:

List.prototype.dispatch = function(selectable_event) {
$(this).trigger(selectable_event.type, selectable_event);
return alert(selectable_event.type);
};

此代码被正确触发并通过警报返回预期的事件类型。但在发出警报之前,它应该会触发自己的自定义事件。这是我遇到问题的地方。

$(document).ready(function() {
var list_change_handler, todo_list;
todo_list = new List("ul.tasks");
list_change_handler = function(event, selectable_event) {
return alert("Hurray!");
};
$(todo_list).bind(SelectableEvent.COMPLETED, list_change_handler);
$(todo_list).bind(SelectableEvent.UNDONE, list_change_handler);
$(todo_list).bind(SelectableEvent.SELECTED, list_change_handler);
$(todo_list).bind(SelectableEvent.DESELECTED, list_change_handler);
}

你在这里看到警报“Hurray”是我想要触发的,但不幸的是我在这里没有运气。具有讽刺意味的是,我用另一个类实现了完全相同的事情,该类以相同的方式发送自定义事件,并且监听器接收得很好。关于为什么这行不通的任何想法?

更新:

根据评论中的讨论,看起来在控制台中记录“this”会返回表示该类的 JS 对象。但是记录“$(this)”会返回一个空的 jQuery 对象,因此永远不会触发触发器。当“this”准确返回类的实例时,有没有想过为什么 $(this) 会变成空?

最佳答案

我发现 jQuery 无法索引我的对象,因为该类实现了它自己版本的 jQuery 方法。在这种情况下,长度()。将 length() 方法重命名为 total() 完全解决了这个问题,该类的任何实例都可以成功触发事件。

关于javascript - jQuery:为什么触发器不会从 JS 对象触发?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3806242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com