gpt4 book ai didi

javascript - 在 javascript 中使用 Object.create(someprototype) 创建的对象的构造函数

转载 作者:行者123 更新时间:2023-11-29 19:18:38 25 4
gpt4 key购买 nike

使用 Object.create(someObj.prototype) 创建的对象的构造函数为 someObj,那么当我尝试访问 someObj 的属性时,为什么会给出未定义的值?

function foo(){
this.name1 = "Name";
this.otherName1 = "someOtherName";
}

var fooObj = new foo();
console.log(fooObj.name1); // Name

var barObj = Object.create(foo.prototype);

console.log(barObj.constructor);
//Outouts:
// function foo(){
// this.name1 = "Name";

// this.otherName1 = "someOtherName" ;
// }


//Then why not able to access this?
console.log(barObj.name1); Outputs; // undefined

最佳答案

这只是因为你还没有调用构造函数。

考虑以下几点:

barObj.constructor(); // <--- this will call the constructor function and set this.name1 and this.otherName1
console.log(barObj.name1); // Outputs: "Name"

关于javascript - 在 javascript 中使用 Object.create(someprototype) 创建的对象的构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34075709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com