使用Google V8从C ++代码中抛出JavaScript异常

时间:2009-09-02 09:08:55

标签: javascript c++ v8

我正在编写一个JavaScript应用程序,它通过Google的V8访问某些C ++代码。

一切正常,但我无法弄清楚如何抛出JavaScript异常,这可以从C ++方法的JavaScript代码中获取。

例如,如果我在C ++中有一个函数,比如

...
using namespace std;
using namespace v8;
...
static Handle<Value> jsHello(const Arguments& args) {
    String::Utf8Value input(args[0]);
    if (input == "Hello") {
        string result = "world";
        return String::New(result.c_str());
    } else {
        // throw exception
    }
}
...
    global->Set(String::New("hello"), FunctionTemplate::New(jsHello));
    Persistent<Context> context = Context::New(NULL, global);
...

暴露于JavaScript,我想在JavaScript代码中使用它,如

try {
    hello("throw me some exception!");
} catch (e) {
    // catched it!
}

从C ++代码中抛出V8异常的正确方法是什么?

1 个答案:

答案 0 :(得分:29)

编辑:此答案适用于旧版本的V8。有关当前版本,请参阅Sutarmin Anton's Answer


return v8::ThrowException(v8::String::New("Exception message"));

您还可以使用v8::Exception中的静态函数抛出更具体的异常:

return v8::ThrowException(v8::Exception::RangeError(v8::String::New("...")));
return v8::ThrowException(v8::Exception::ReferenceError(v8::String::New("...")));
return v8::ThrowException(v8::Exception::SyntaxError(v8::String::New("...")));
return v8::ThrowException(v8::Exception::TypeError(v8::String::New("...")));
return v8::ThrowException(v8::Exception::Error(v8::String::New("...")));