Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'd like to pass an array from javascript to C++, however I don't know how to convert the v8 array to a C++ array. Any help is appreciated. Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
270 views
Welcome To Ask or Share your Answers For Others

1 Answer

The simplest way is to convert it to JSON which is a platform and language-agnostic string format and pass that to your C++ where it can then parse the JSON string into its own data format.

If your C++ code is running it its now process, you will then have to find a way to deliver the string to the other process. If the C++ code is in a child process, you can send it over stdio. If not, then you will need some other interprocess communication mechanism for sending the string to app running the C++ code.

There is a mechanism for creating a nodejs add-on in C++ where you can exchange data between the two and the C++ code runs in the nodejs process, but it is not for the faint of heart as its fairly involved and difficult to learn. The doc for addons is here. It will, in general, be a lot, lot simpler to send a JSON string between two processes.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...