observer里面 function one()是做什么的? 不太懂,什么情况会用到?
function one(event, fn) {
this.bind(event, function fnc() {
fn.apply(this, slice.call(arguments));
this.unbind(event, fnc);
});
return this;
}
这里面的this.bind是undefined的,应该是on或者subscribe吧。
function one(event, fn) {
this.bind(event, function fnc() {
fn.apply(this, slice.call(arguments));
this.unbind(event, fnc);
});
return this;
}
这里面的this.bind是undefined的,应该是on或者subscribe吧。
2015-12-24
举报