0

我正在尝试使用旧的 v8 API 更新 node.js 插件。

这是我的wrapper.cpp代码:

std::map<int, Persistent<Function> > WrapMdUser::callback_map;

void WrapMdUser::FunCallback(CbRtnField *data) {
std::map<int, Persistent<Function> >::iterator cIt = callback_map.find(data->eFlag);
Local<Number> argv[1] = Nan::New(data->nReason);
cIt->second->Call(Nan::GetCurrentContext()->Global(), 1, argv);
}

如果我理解正确,作者正在使用 mapPersistent<function>来存储回调(参见callback_mapstd),但是当 时node-gyp build,编译器会抛出此错误:

wrapper.cpp:331:19: error: base operand of ‘->’ has non-pointer type ‘v8::Persistent<v8::Function>’
cIt->second->Call(Nan::GetCurrentContext()->Global(), 1, argv);

将此代码更新为新的 v8 API 以便我可以使用最后一个节点版本运行它的最佳方法是什么?

非常感谢。

4

1 回答 1

0

我在这篇文章中找到了答案,persistent需要先转换为本地函数:

Local<Function>::New(isolate, work->callback)->
Call(isolate->GetCurrentContext()->Global(), 1, argv);

感谢@Scott Frees。

于 2016-06-14T08:59:07.293 回答