是否可以设置当用户想要调用不存在的函数时调用的回退回调? E.g。
my_object.ThisFunctionDoesNotExists(2, 4);
现在我希望调用一个函数,其中第一个参数是名称,并且传递参数的堆栈(或类似的东西)。为了澄清,回退回调应该是C ++函数。
答案 0 :(得分:1)
假设您的问题是关于从标签推断的嵌入式V8引擎,您可以使用和声代理功能:
var A = Proxy.create({
get: function (proxy, name) {
return function (param) {
console.log(name, param);
}
}
});
A.hello('world'); // hello world
使用--harmony_proxies
参数启用此功能。来自C ++代码:
static const char v8_flags[] = "--harmony_proxies";
v8::V8::SetFlagsFromString(v8_flags, sizeof(v8_flags) - 1);
其他方式:
v8::ObjectTemplate
上有一个名为SetNamedPropertyHandler
的方法,因此您可以拦截属性访问权限。例如:
void GetterCallback(v8::Local<v8::String> property,
const v8::PropertyCallbackInfo<v8::Value>& info)
{
// This will be called on property read
// You can return function here to call it
}
...
object_template->SetNamedPropertyHandler(GetterCallback);