gpt4 book ai didi

c++ - 在 v8 中将字符串转换为函数

转载 作者:行者123 更新时间:2023-11-30 04:27:15 24 4
gpt4 key购买 nike

我正在尝试将函数硬编码为字符串,将其转换为函数并运行它。

Local<Function> cb = "function(){ console.log('HELLO BOSS'); }";
int argc=0;
v8::Handle<v8::Value> * argv;
cb->Call(Context::GetCurrent()->Global(),argc,argv);

编译器说我不能直接这样做:

      error C2664: 'v8::Handle<T>::Handle(T *)' : cannot convert parameter 1 from 'const char *' to 'v8::Function *'
with
[
T=v8::Function
]
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
x.cpp(15) : see reference to function template instantiation 'v8::Local<T>::Local<const char>(S *)' being compiled
with
[
T=v8::Function,
S=const char
]

那我该怎么做呢?另外,所有好东西(eval、new Function 等)在哪里?

最佳答案

我做到了。男孩,我喜欢这个东西。

v8::Script::Compile(v8::String::New(
" console.log('WORKS BOSS'); "
" console.log('Happy?'); "
" console.log('2+2=' + (2+2)); "
))->Run();

我不知道它是否正确(如“任何相关风险”中的正确),但它似乎有效。

关于c++ - 在 v8 中将字符串转换为函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11078394/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com