javascript – 使用调用super的方法分配浅克隆对象时的TypeError

前端之家收集整理的这篇文章主要介绍了javascript – 使用调用super的方法分配浅克隆对象时的TypeError前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在Chrome Canary 63和Chrome 61上测试以下代码.代码的目标是设置一个将super调用到类实例(z)的方法.在我的代码库中,有时会在添加到实例之前使用Object.assign克隆属性块,并且只要发生这种情况,代码就会失败.

我用下面的代码示例重现了这个问题.如果避免浅层克隆(props = Object.assign({},props);)代码工作正常但是如果我添加该行我得到TypeError :(中间值).bar不是一个函数.

我已经尝试过Object.create(this,Object.getOwnPropertyDescriptors(props))而不是Object.assign,但它会导致相同的错误.

有没有办法在已克隆的对象上正确设置super?

let Moo = class {
    bar() {
        return " [bar on Moo] ";
    }
};

let Zoo = class extends Moo { 
    bar() { 
        return " [bar on Zoo] " + super.bar();
    }
};

function addProps(inst,props) {
    // Code works if the line below is commented out but otherwise
    // results in TypeError: (intermediate value).bar is not a function
    props = Object.assign({},props); // <-- Offending code

    Object.setPrototypeOf(props,inst.__proto__);
    Object.assign(inst,props);
}

let props = {
    onZooInst: {
        bar() {
            return " [bar on overridden instance] " + super.bar();
        }
    }
};

let z = new Zoo();
addProps(z,props.onZooInst);
console.log(z.bar());
最佳答案

Is there any way to properly set super on objects that have been cloned?

不. super使用函数的[[HomeObject]]插槽,该插槽在创建功能(方法)时设置,目前无法更改.

可能来自规范的最佳报价是在Table 27

[[HomeObject]]: If the function uses super,this is the object whose [[GetPrototypeOf]] provides the object where super property lookups begin.

你唯一能做的就是尝试改变函数的[[HomeObject]]引用的对象的原型,但是A)快速变得丑陋,B)杀死性能(在那些重要的情况下).

如果你正在做很多“方法”克隆,你最好使用引用函数的简单属性,而不是方法,而不是使用super.

原文链接:https://www.f2er.com/js/429210.html

猜你在找的JavaScript相关文章