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).
QJsonObject obj; obj.insert("key1", QStringList() {"a", "b"});
How to append a new value c to key1 ?
Pseudo code:
auto curVal = obj["key1"] auto curArr = curVal.toArray(); curArr.append("c"); obj["key1"] = curArr;