如何将字符串数据发送到 JavaScript 中?

发布于 2024-11-06 09:43:14 字数 311 浏览 0 评论 0原文

我正在使用 v8,我遇到了下一个问题 - 我有一个运行 javascript 文件的应用程序(我只是将其读入字符串,然后执行

Local<String> source = String::New(javascript); //javascript is string with js file
Local<Script> script = Script::Compile(source);
Local<Value> result = script->Run(); 

如何将字符串变量发送到该文件中?

I am using v8 and i faced next problem - i have an application which running a javascript file ( i simply read it into a string and than execute with

Local<String> source = String::New(javascript); //javascript is string with js file
Local<Script> script = Script::Compile(source);
Local<Value> result = script->Run(); 

how can I send a string variable into this file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贪了杯 2024-11-13 09:43:14

在脚本源中放置一个占位符,例如 STRING_HERE。然后,在创建源对象之前,在字符串中找到该占位符并将其替换为所需的字符串值。

Put a placeholder in the script source, like STRING_HERE. Then, before creating the source object, find that placeholder in the string and replace it with the string value you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文