0

我想设置一个Handle<Value>数组。我是 v8 的初学者,当我这样做时我找不到如何设置它,例如:

Persistent<Context> fcontext
Handle<Value> Arr = Array::New(0);
Persistent<Function> Func;
Handle<Value> result = Func->Call(fcontext->Global(), 0, Arr);

我收到此错误:

 error C2664: 'v8::Function::Call' : cannot convert parameter 3 from 'v8::Handle<T>' to 'v8::Handle<T> []'
    1>        with
    1>        [
    1>            T=v8::Value
    1>        ]

如何制作一个Handle<Value>包含 1 个元素的数组?

4

1 回答 1

2
const unsigned argc = 1;
Local<Value> argv[argc] = { Local<Value>::New(String::New("Hello World!")) };
func->Call(Context::GetCurrent()->Global(), argc, argv);

更多示例:

于 2012-04-24T19:52:45.947 回答