1
我的父類調用父原型
function Parent() {}
Parent.prototype.get = function() {}
Parent.prototype.start= function() { this._start() }
我的孩子是
function Child(){ Parent.call(this, arguments) }
Child.prototype._start = function(){ this.get() /* error here - this.get is not a function*/ }
util.inherits(Child, Parent);
當我做
new Child().start()
我得到一個錯誤this.get is not a function
。我怎樣才能調用父母原型功能?謝謝。
'的console.log(本)'來看看'this'引用 – Laazo
使用ES6類和考慮超級方法。 – zero298