Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I am calling a JavaScript function using QJSEngine, the JavaScript function returns a JSON object. How can I accept this from the evaluate call?
I want to assign it to an instance of QJsonObject.
@SPlatten The easiest way is to convert it to string (objectName.toString()) and parse the string with QJsonDocument::fromJson().
objectName.toString()
QJsonDocument::fromJson()