有些东西一直困扰着我在
Javascript中进行面向对象编码的方式.当有回调时,我经常想引用最初调用该函数的对象,这导致我做这样的事情:
MyClass.prototype.doSomething = function(obj,callback) { var me = this; // ugh obj.loadSomething(function(err,result) { me.data = result; // ugh callback(null,me); }); }
首先,总是创建额外的变量对我来说太过分了.此外,我不得不怀疑它是否可能最终导致问题(循环引用?un-GCd对象?)通过将“me”变量传递回回调.
解决方法
这就是
Function.bind()
的用途:
MyClass.prototype.doSomething = function(obj,callback) { obj.loadSomething((function(err,result) { this.data = result; callback(null,this); }).bind(this)); }