我有一个全球性的事件管理器,允许你用lambda表达式来听string
事件名称。
// somewhere in the ModuleScript class
Event->Listen("WindowResize", [=]{
// ...
});
现在,我要注册到从JavaScript事件了。 因此,我写了这个回调。
v8::Handle<v8::Value> ModuleScript::jsOn(const v8::Arguments& args)
{
// get pointer to class since we're in a static method
ModuleScript *module = (ModuleScript*)HelperScript::Unwrap(args.Data());
// get event name we want to register to from arguments
if(args.Length() < 1 || !args[0]->IsString())
return v8::Undefined();
string name = *v8::String::Utf8Value(args[0]);
// get callback function from arguments
if(args.Length() < 2 || !args[1]->IsFunction())
return v8::Undefined();
v8::Handle<v8::Function> callback =
v8::Local<v8::Function>::Cast(args[1]->ToObject());
// register event on global event manager
module->Event->Listen(name, [=]{
// create persistent handle so that function stays valid
// maybe this doesn't work, I don't know
v8::Persistent<v8::Function> function =
v8::Persistent<v8::Function>::New(args.GetIsolate(), callback);
// execute callback function
// causes the access violation
function->Call(function, 0, NULL);
});
return v8::Undefined();
}
当触发事件时,应用程序崩溃与访问冲突。 我的想法是,要么函数对象是无效的,在这个时候了,或者它是一个JavaScript作用域的问题。 但我无法弄清楚。
是什么原因导致的访问冲突,以及如何克服呢?