尝试使用子类 QObject 作为参数执行小脚本。
QJSEngine jsEngine;
QJSValue arg = jsEngine.newQObject(child); // Child it's subclassed QObject
QJSValue function = jsEngine.evaluate(m_childRestriction);
QJSValue result = function.call(QJSValueList() << arg);
在销毁 jsEngine 时,它为我的子对象调用 delete(因为 newQObject 使用 JavaScriptOwnership 创建它)。如何避免它,如何更改 arg 的所有权?
脚本很简单:
function(device) {
return device.m_place >=0 && device.m_place < 16;
}
UPD:
可以调用QQmlEngine::setObjectOwnership(child, QQmlEngine::CppOwnership);
对象,因为它是静态函数。只是从帮助中不清楚。认为它也应该在QJSEngine
。