将数字元素传递给对象

时间:2015-12-29 14:04:29

标签: c++ node.js v8 node.js-addon

我正在研究NodeJS插件项目,我无法真正理解如何将长值传递到我的对象中。

这是我的代码:

#include <node.h>
namespace NODEAPP
{
using v8::FunctionCallbackInfo;
using v8::Isolate;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;
using v8::Handle;
void fooFunc(const FunctionCallbackInfo<Value>& args)
{
    long foo = 51294;
    long bar = 91923;
    Isolate* isolate = args.GetIsolate();
    Local<Object> obj = Object::New(isolate);
    obj->Set(String::NewFromUtf8(isolate, "msg"), wanna pass foo here);
    args.GetReturnValue().Set(obj);
}
}

提前致谢

1 个答案:

答案 0 :(得分:2)

我发现了。

这是:

obj->Set(String::NewFromUtf8(isolate, "msg"), v8::Integer::New(isolate, foo));