这个 jsFiddle突出了我的问题。
它模仿了我定义对象并通过 socket.io 发送到页面的一些功能。
我有一个 setInterval 函数检查是否Pots
是一个函数,当它是我触发一个事件时。在那个事件中,我尝试实例化一个新实例,Pots
但被告知它是未定义的。
编码:
var Pots;
$(document).ready(function(){
var timerId = 0;
var otherTimer = 0;
otherTimer = setInterval(function() { console.log("Creating"); Pots = function() {}; }, 5000);
timerId = setInterval(function() {
console.log("Checking");
if (_.isFunction(Pots)) {
console.log(Pots);
clearInterval(timerId);
clearInterval(otherTimer);
var evt = document.createEvent('Event');
evt.initEvent('ObjectsAvailable', true, true);
document.dispatchEvent(evt);
}
}, 1000);
});
document.addEventListener('ObjectsAvailable', function(e) {
console.log(Pots);
var Pots = new Pots();
});
编辑
在下面发表了这条评论:
我应该指出,这Pots
实际上是一个带有此声明的 Backbonejs 集合:var Pots = Backbone.Collection.extend({model: Pot});
。我做这个事件的原因是因为有一段时间没有设置“Pots”(可能在浏览器加载声明 Pots 的文件之前)。jsFiddle 只是为了模拟时间的存在。在我的实际代码中,“otherTimer”不存在,Pots 最终是一个函数,但是当我在ObjectsAvailable
活动期间尝试使用它时,它不起作用。