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

Convert string to function in v8

本文关键字:转换 函数 字符串 v8      更新时间:2023-10-16

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

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

编译器 sais 我不能直接做:

      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
      ]

那我该怎么做呢?另外,所有好东西(评估,新功能等)在哪里?

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

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

我不知道它是否正确(就像"任何相关的风险"一样),但它似乎有效。