nodejs napi如何手动创建一个CallbackInfo类型的数据
nodejs napi How to manually create a CallbackInfo type data
我想调用一些已有的函数,但是函数需要CallbackInfo参数,如何初始化一个CallbackInfo
Value b(const CallbackInfo& info)
{
...
}
Value a(const CallbackInfo& info)
{
CallbackInfo newInfo = CallbackInfo::New();
return b(newInfo);
}
void b(const CallbackInfo& info)
{
printf("function b\n");
}
void a(const CallbackInfo& info)
{
auto js_this = info.This().As<Napi::Object>();
if (js_this.Has("b") && js_this.Get("b").IsFunction())
{
js_this.Get("b").As<Napi::Function>().Call(info.This(), {});
}
}
我想调用一些已有的函数,但是函数需要CallbackInfo参数,如何初始化一个CallbackInfo
Value b(const CallbackInfo& info)
{
...
}
Value a(const CallbackInfo& info)
{
CallbackInfo newInfo = CallbackInfo::New();
return b(newInfo);
}
void b(const CallbackInfo& info)
{
printf("function b\n");
}
void a(const CallbackInfo& info)
{
auto js_this = info.This().As<Napi::Object>();
if (js_this.Has("b") && js_this.Get("b").IsFunction())
{
js_this.Get("b").As<Napi::Function>().Call(info.This(), {});
}
}