我有以下JavaScript基本功能:
function Animal { }
Animal.prototype.move = function () {
//...
}
我还有一个派生的JavaScript函数:
function Dog {
Dog.super_.call(this);
}
util.inherits(Dog, Animal);
Dog.prototype.bark = function () {
// ...
}
现在我想创建一个与派生的完全相同的C ++插件
Dog
JavaScript函数:
void Dog::Init(Handle<Object> exports, Handle<Object> module) {
Isolate* isolate = Isolate::GetCurrent();
Local<Function> require = Local<Function>::Cast(module->Get(
String::NewFromUtf8(isolate, "require")));
Local<Value> args[] = {
String::NewFromUtf8(isolate, "./animal")
};
Local<Value> animalModule = require->Call(module, 1, args);
Local<Function> animalFunc = Local<Function>::Cast(animalModule);
Local<FunctionTemplate> tpl = FunctionTemplate::New(isolate, New);
// tpl->Inherit(animalFunc); // <-- HERE
tpl->SetClassName(String::NewFromUtf8(isolate, "Dog"));
tpl->InstanceTemplate()->SetInternalFieldCount(1);
NODE_SET_PROTOTYPE_METHOD(tpl, "bark", Bark);
constructor.Reset(isolate, tpl->GetFunction());
exports->Set(String::NewFromUtf8(isolate, "Dog"),
tpl->GetFunction());
}
如何从FunctionTemplate
/ animalFunc
animalModule
获得tpl
能够在dbconstants.py
功能模板中继承它?或者也许我应该以某种方式将 animalFunc.prototype 分配给 tpl.prototype ?