我有一个向量std::vector<std::string> path
,我想将其复制到v8 array并从我的函数返回。
我尝试过创建一个新数组
v8::Handle<v8::Array> result;
并将path
的值放入result
但没有运气。
return scope.Close(v8::Array::New(/* I've tried many things in here */));
没有成功。
This是一个类似的问题,但我似乎无法复制结果。
如何填充v8阵列?
答案 0 :(得分:10)
这个直接来自Embedder's Guide的示例似乎与您想要的非常接近 - 用新的Integer
对象替换新的String
个对象。
// This function returns a new array with three elements, x, y, and z.
Handle<Array> NewPointArray(int x, int y, int z) {
// We will be creating temporary handles so we use a handle scope.
HandleScope handle_scope;
// Create a new empty array.
Handle<Array> array = Array::New(3);
// Return an empty result if there was an error creating the array.
if (array.IsEmpty())
return Handle<Array>();
// Fill out the values
array->Set(0, Integer::New(x));
array->Set(1, Integer::New(y));
array->Set(2, Integer::New(z));
// Return the value through Close.
return handle_scope.Close(array);
}
我已经阅读了Local和Persistent句柄的语义,因为我觉得这就是你被困住的地方。
这一行:
v8::Handle<v8::Array> result;
不创建新数组 - 它只创建一个Handle,以后可以用数组填充。
答案 1 :(得分:1)
创建新阵列
Handle<Array>postOrder = Array::New(isolate,5);
//New takes two argument 1st one should be isolate and second one should
//be the number
在v8 :: array
中设置元素 int elem = 101; // this could be a premitive data type, array or vector or list
for(int i=0;i<10;i++) {
postOrder->Set(i++,Number::New(isolate,elem));
}
从v8 :: array
获取元素 for(int i=0; i<postOrder->Length();i++){
double val = postOrder->Get(i)->NumberValue()
}
//Type conversion is important in v8 to c++ back and forth; there is good library for data structure conversion; **V8pp Header only Librabry**
谢谢!