我試圖使用繼承,但是我被卡住了。我收到一個錯誤,不知道我做錯了什麼。我在網上看到的所有示例都不會將對象傳遞到構造函數中,所以我不確定我應該做什麼。這裏是一個簡單化的例子 -JavaScript - 繼承錯誤
function Automobile(obj){
this.name = obj.name;
this.model = obj.model;
}
Automobile.prototype = {
getName: function(){
console.log(this.name);
},
getModel: function(){
console.log(this.model);
}
}
var bmw = new Automobile({
name: 'BMW',
model: 'm5'
})
bmw.getName();
bmw.getModel();
function Truck(obj){
this.cabSize = obj.cabSize
}
Truck.prototype = new Automobile();
Truck.prototype = {
getCabSize: function(){
console.log(this.cabSize);
}
}
var fordF150 = new Truck({
name: 'Ford',
model: 'F150'
})
//Uncaught TypeError: Cannot read property 'name' of undefined test.js:2
//Automobile test.js:2
//(anonymous function)
當你調用'Truck.prototype = new Automobile();你期望第一個參數是一個對象時,你還沒有傳遞一個對象。 – Musa 2014-08-28 23:16:15