我通过剖析我以前使用过的其他人编写的一些脚本来学习 javascript(stackoverflow 对此至关重要!)。这段代码(我从中间删减了很多,以使代码更易于阅读,所有注释都是我的)来自fullCalendar.js,一个 jquery 插件。
我不确定作者在这里做什么:
function EventManager(options, _sources) { //called using .call()
var t = this;
t.isFetchNeeded = isFetchNeeded; //?? assign the function "isFetchNeeded" to the variable (not the value returned by the function)??
var trigger = t.trigger; //?? namespace??
}
function View(element, calendar, viewName) {
var t = this;
function trigger(name, thisObj) {
return calendar.trigger.apply(
calendar,
[name, thisObj || t].concat(Array.prototype.slice.call(arguments, 2), [t])
);
}
}
首先,我的猜测是this.foo=bar
将函数“bar”分配给当前对象中名为“isFetchNeeded”的变量(还不知道为什么要这样做。速度?)。
其次,这条线var foo=this.bar
把我难住了。看起来它可能是一些命名空间的魔法。
我对第一行的思考是否正确?下一行在做什么?
谢谢