访问QJSEngine中的动态属性

Access dynamic property in QJSEngine

本文关键字:动态 属性 QJSEngine 访问      更新时间:2023-10-16

我可以访问传递到QJSEngineQObject的属性,但为什么不能访问动态属性?

auto myObject = new MyObject(); // Contains a single property 'myProp'.
QJSEngine engine;
auto scriptMyObject = engine.newQObject( myObject );
engine.globalObject().setProperty( "myObject" , scriptMyObject );
engine.evaluate( "myObject.myProp = 4.2" );
cout << engine.evaluate( "myObject.myProp" ).toNumber() << endl;
myObject->setProperty( "newProp", 35 );
cout << myObject->property( "newProp" ).toInt() << endl;
cout << engine.evaluate( "myObject.newProp" ).toInt() << endl;

退货:

4.2
35
0

使用Qt 5.2。

似乎这可能是QML中的一个错误。如果你使用QScriptEngine,问题似乎会消失,

#include <QScriptEngine>
#include <QCoreApplication>
#include <QDebug>
int main(int a, char *b[])
{
    QCoreApplication app(a,b);
    auto myObject = new QObject;
    QScriptEngine engine;
    auto scriptMyObject = engine.newQObject( myObject );
    myObject->setProperty( "newProp", 35 );
    engine.globalObject().setProperty( "myObject" , scriptMyObject );
    qDebug() << myObject->property( "newProp" ).toInt();
    qDebug() << engine.evaluate( "myObject.newProp" ).toInteger();
    qDebug() << engine.evaluate( "myObject.newProp = 45" ).toInteger();
    qDebug() << myObject->property( "newProp" ).toInt();
    qDebug() << " -------- ";
    // still can't create new properties from JS?
    qDebug() << engine.evaluate( "myObject.fancyProp = 30" ).toInteger();
    qDebug() << myObject->property("fancyProp").toInt();
    return 0;
}

中的结果

35
35
45
45
 -------- 
30
0

因此,这看起来像是QJSEngine中的一个错误,因为bahaviour与QScriptEngine不同。