我正在编写一个 Node.js 本机附加组件(带有nan
辅助模块(。我想创建和导出一个 ES6 类值,其类型为 "function"
,.toString()
为 "class ... { ... }"
。即,我想知道本地等价物:
module.exports = class CLASS_NAME {};
.
<小时 />我在 V8 文档中唯一能找到的用于执行此操作的是 .SetName()
.
#include <nan.h>
#define LOCAL_STRING(c_string) (Nan::New(c_string).ToLocalChecked())
#define LOCAL_FUNCTION(c_function)
(Nan::New<v8::FunctionTemplate>(c_function)->GetFunction())
void method(const Nan::FunctionCallbackInfo<v8::Value>& info)
{
info.GetReturnValue().Set(LOCAL_STRING("world"));
}
void initialize_module(
v8::Local<v8::Object> exports,
v8::Local<v8::Object> module
)
{
v8::Local<v8::Function> f = LOCAL_FUNCTION(method);
f->SetName(LOCAL_STRING("FUNCTION_NAME")); // The only thing I could do
module->Set(
LOCAL_STRING("exports"),
f
); // module.exports = f;
}
NODE_MODULE(blahblah, initialize_module)
但它只更改函数的名称:
module.exports = function FUNCTION_NAME { ...... };
,这根本不会创建 ES6 类。
<小时 />我该怎么做?
我认为您需要通过调用其SetClassName(v8::String)
方法来命名函数模板。
是构造函数,则最好通过设置符号getToStringTag
来命名其原型对象模板,如下所示:
prototype_template->Set(
v8::Symbol::GetToStringTag(isolate),
v8::String::New(isolate, "prototype_name"),
static_cast<v8::PropertyAttribute>(...);