I can make an array in QEngine and evaluate it, but I don't have any idea of how to get each element of the array to a QStringList or a normal QList...
This is probably a stupid question since I can't find anything on this forum about it :). But I'm asking it anyway because I really want to know it!
Here's what I already got:
And this is the output:Code:
QScriptValue array = engine.evaluate("new Array(\"a\", \"b\", \"c\")"); if(var.canConvert<QStringList>()) { qDebug() << "can convert"; qDebug() << list.count(); while(list.count()) qDebug() << list.takeAt(0); }
As you can see, the QStringList only contains one element: "a,b,c"...Quote:
can convert
1
"a,b,c"
Thanks,
Gillis