我从另一个 JS 继承了一个类,并在父函数上添加了一些原型函数。当我创建一个新的子实例时,我想调用父的构造函数。请提出一种方法。
家长
function Parent() { .. }
Parent.prototype.fn1 = function(){};
exports.create = function() {
return (new Parent());
};
孩子
var parent = require('parent');
Child.prototype = frisby.create();
function Child() { .. }
Child.prototype.fn2 = function(){};
exports.create = function() {
return (new Child());
};