JavaScript OOP wrong _this value



假设我们有以下代码:

var MyClass = (function(){
    var _this;
    function MyClass(inputVal){
        _this = this;
        this.value = inputVal;
    }
    MyClass.prototype.getValue = function(){
        return this.value;
    }
    MyClass.prototype.getValue2 = function(){
        return _this.value;
    }
    return MyClass;
})();

让我们创建两个类的实例:

var instance1 = new MyClass(10);
var instance2 = new MyClass(20);

现在如果我们console.log()我们看到的值:

instance1.getValue();   // 10
instance1.getValue2();  // 20

var MyClass = (function(){
    var _this;
    function MyClass(inputVal){
        _this = this;
        this.value = inputVal;
    }
    MyClass.prototype.getValue = function(){
        return this.value;
    }
    MyClass.prototype.getValue2 = function(){
        return _this.value;
    }
    return MyClass;
})();
var instance1 = new MyClass(10);
var instance2 = new MyClass(20);
console.log(instance1.getValue());
console.log(instance1.getValue2());

为什么会这样?很明显,_this变量获得了最新创建的实例属性。如何解决这个问题?我需要保留一份this的副本。谢谢!

编辑:

真实情况

var HoverEffects = (function(){
    var _this;
    function HoverEffects($nav){
        _this = this;
        this._$activeNav = $nav.siblings('.active_nav');
        this._$hoverableLis = $nav.find('>li');
        this._$activeLi = $nav.find('>li.active');
        if(!$nav.length || !this._$hoverableLis.length || !this._$activeNav.length || !this._$activeLi.length) return;
        if(this._$activeNav.hasClass('bottom')){
            this._$activeNav.align = 'bottom';
            this._$activeLi.cssDefault = {
                left: this._$activeLi.position().left,
                width: this._$activeLi.width()
            };
        }
        else if(this._$activeNav.hasClass('left')){
            this._$activeNav.align = 'left';
            this._$activeLi.cssDefault = {
                top: this._$activeLi.position().top,
                height: this._$activeLi.height()
            };
        }
        else{
            return;
        }
        this._$hoverableLis.hover(
            function(){
                // How to set the correct this inside this function?
                if(this._$activeNav.align === 'bottom'){
                    this._$activeNav.css({
                        left: $(this).position().left,
                        width: $(this).width()
                    });
                }
                else if(this._$activeNav.align === 'left'){
                    this._$activeNav.css({
                        top: $(this).position().top,
                        height: $(this).height()
                    });
                }
            },
            function(){
                // Same here, wrong this
                this._$activeNav.css(this._$activeLi.cssDefault);
            }
        );
    }
    return HoverEffects;
})();
var sideNavHoverMagic = new HoverEffects($('#side-navigation'));
var primaryNavHoverMagic = new HoverEffects($('#primary-navigation'));

为什么会这样?

每次调用new MyClass, _this = this都会运行。第二次重写第一次。

因此_this指向new MyClass(20),这意味着当您从任何 MyClass实例调用getValue2时,将返回20,因为所有 MyClass实例都指向相同的_this值。


基于对问题的评论:

如果你试图传递一个绑定到适当上下文的函数,有多种方法可以确保this引用正确的对象。在继续之前,请阅读"this关键字是如何工作的?",因为我没有理由在这里重复所有的内容。

如果你绑定事件回调,比如在构造函数中:

function Example(something) {
    something.addEventListener(..event.., this.callback, false);
}
Example.prototype.callback = function () {
    this.doStuff();
    this.doMoreStuff();
};

回调会有错误的this值,因为它没有作为this.callback被调用,它只是作为:

fn = this.callback;
fn(); //no reference to this

你可以用很多方法来解决这个问题。

Function.prototype.bind

可以为每个实例绑定callback。这是非常简洁的:

function Example(something) {
    //generate a new callback function for each instance that will
    //always use its respective instance
    this.callback = this.callback.bind(this);
    something.addEventListener(..event.., this.callback, false);
}
Example.prototype.callback = function () {
    this.doStuff();
    this.doMoreStuff();
};

that = this

可以在构造函数中创建回调(闭包),并在构造函数中引用变量。

function Example(something) {
    //every Example object has its own internal "that" object
    var that = this;
    this.callback = function () {
        //this function closes over "that"
        //every instance will have its own function rather than
        //a shared prototype function.
        that.doStuff();
        that.doMoreStuff();
    }
    something.addEventListener(..event.., this.callback, false);
}

() => {} (Fat Arrow Syntax)

如果你使用的是ES2015,你可以使用"fat arrow"语法来创建不创建新上下文的lambdas:

function Example(something) {
    this.callback = () => {
        //the callback function doesn't create a new "this" context
        //so it referes to the "this" value from "Example"
        //every instance will have its own function rather than
        //a shared prototype function.
        that.doStuff();
        that.doMoreStuff();
    }
    something.addEventListener(..event.., this.callback, false);
}

相关内容

最新更新