5

尝试使用子类 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

4

1 回答 1

3

可以调用 QQmlEngine::setObjectOwnership(child, QQmlEngine::CppOwnership); 对于对象,因为它是静态函数。只是从帮助中不清楚。认为它也应该在 QJSEngine 中。

于 2017-04-13T06:26:04.677 回答