Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.2.0
-
None
-
Linux
-
08569a0981308f2d3c164d89aa4a00f321fd8e21
Description
QScriptEngine allows me to access dynamic properties, but QJSEngine does not - I would expect them to be the same.
int main( int argc, char* argv[] ) { QCoreApplication app( argc, argv ); { auto myObject = new QObject(); myObject->setProperty( "myProp", 42 ); QScriptEngine engine; auto scriptMyObject = engine.newQObject( myObject ); engine.globalObject().setProperty( "myObject", scriptMyObject ); cout << engine.evaluate( "myObject.myProp" ).toInt32() << endl; } { auto myObject = new QObject(); myObject->setProperty( "myProp", 42 ); QJSEngine engine; auto scriptMyObject = engine.newQObject( myObject ); engine.globalObject().setProperty( "myObject", scriptMyObject ); cout << engine.evaluate( "myObject.myProp" ).toInt() << endl; } return EXIT_SUCCESS; }
Returns:
42 0
Attachments
Issue Links
- is replaced by
-
QTBUG-37408 Cannot attach dynamic properties from javascript on QObjects.
-
- Closed
-
For Gerrit Dashboard: QTBUG-38181 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
200961,3 | QJSEngine: document limitation of dynamic QObject properties | 5.9 | qt/qtdeclarative | Status: MERGED | +2 | 0 |