在V8中创建自定义JavaScript函数?

我正在尝试将自定义函数嵌入到我的项目中,它使用V8引擎,显然我无法使其正常工作.我已经使用了代码,我发现它,但它似乎已经过时了,或者我只是做错了.我的观点是包含一个自定义的
javascript文件.我目前的代码(用于测试)是这样的:

    HandleScope handle_scope(isolate);

    v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
    global->Set(v8::String::NewFromUtf8(isolate, "test", v8::NewStringType::kNormal).ToLocalChecked(),
        v8::FunctionTemplate::New(isolate, test));

    Handle<Context> context = Context::New(isolate);
    Persistent<Context> persistent_context(isolate, context);

    Context::Scope context_scope(context);
    const char* data = "test";
    Handle<String> source = String::NewFromUtf8(isolate, data);

    Handle<Script> script = Script::Compile(source);
    if (!script.IsEmpty())
        Handle<Value> result = script->Run();

测试代码(显然仅用于测试):

void test(const v8::FunctionCallbackInfo<v8::Value>& args) {
    MessageBoxA(NULL,"test", "", 0);
}

但引擎返回此错误:

Uncaught ReferenceError: test is not defined

所以我的问题是,如果我做得正确,我可以自己做包括我希望,但我只是无法得到执行的功能.

最佳答案 以下是项目中的一些代码:

Isolate::Scope iscope( isolate_ );
HandleScope hs( isolate_ );


Local<Object> test = Object::New(isolate_);
test->Set(String::NewFromUtf8(isolate_, "javaScriptFunctionName"), Function::New(isolate_, CPP_FN_CALLBACK));
global_template->Set(String::NewFromUtf8(isolate_, "test"), test);

这将导致window.test的对象带有一个名为window.test.javaScriptFunctionName()的函数

点赞