我有兴趣了解如何使用Qt的QJsonDocument来解析来自简单嵌套JSON 的所有条目(因为我刚刚开始研究这个。)
嵌套的json示例:
{
"city": "London",
"time": "16:42",
"unit_data":
[
{
"unit_data_id": "ABC123",
"unit_data_number": "21"
},
{
"unit_data_id": "DEF456",
"unit_data_number": "12"
}
]
}
我可以解析它的非嵌套部分:
QJsonObject jObj;
QString city = jObj["city"].toString();
QString time = jObj["time"].toString();
答案 0 :(得分:5)
我不确定你在问什么,但也许这可能会有所帮助:
QJsonDocument doc;
doc = QJsonDocument::fromJson("{ "
" \"city\": \"London\", "
" \"time\": \"16:42\", "
" \"unit_data\": "
" [ "
" { "
" \"unit_data_id\": \"ABC123\", "
" \"unit_data_number\": \"21\" "
" }, "
" { "
" \"unit_data_id\": \"DEF456\", "
" \"unit_data_number\": \"12\" "
" } "
" ] "
" }");
// This part you have covered
QJsonObject jObj = doc.object();
qDebug() << "city" << jObj["city"].toString();
qDebug() << "time" << jObj["time"].toString();
// Since unit_data is an array, you need to get it as such
QJsonArray array = jObj["unit_data"].toArray();
// Then you can manually access the elements in the array
QJsonObject ar1 = array.at(0).toObject();
qDebug() << "" << ar1["unit_data_id"].toString();
// Or you can loop over the items in the array
int idx = 0;
for(const QJsonValue& val: array) {
QJsonObject loopObj = val.toObject();
qDebug() << "[" << idx << "] unit_data_id : " << loopObj["unit_data_id"].toString();
qDebug() << "[" << idx << "] unit_data_number: " << loopObj["unit_data_number"].toString();
++idx;
}
我得到的输出是:
city "London"
time "16:42"
"ABC123"
[ 0 ] unit_data_id : "ABC123"
[ 0 ] unit_data_number: "21"
[ 1 ] unit_data_id : "DEF456"
[ 1 ] unit_data_number: "12"
答案 1 :(得分:2)
在JSON表示法中,所有内容都应格式化为键值。 Keys 始终是字符串,但值可以是字符串文字("example"
),数字文字,数组([]
)和对象({{1 }})。
{}
返回给定JSON字符串的根对象。回想一下,对象是用QJsonDocument::fromJson(...).object()
符号编写的。此方法为您提供{}
。此JSON 对象有3个键(QJsonObject
,"city"
和"name"
),其中值键的类型为字符串文字,字符串文字和数组。
因此,如果您想访问存储在该阵列中的数据,您应该这样做:
"unit_data"
请注意,数组没有键,它们只有值,它们可以是上面提到的三种类型。在这种情况下,该数组包含2个对象,可以将其视为其他JSON对象。所以,
QJsonArray array = rootObj["unit_data"].toArray();
现在QJsonObject obj = array.at(0).toObject();
对象指向以下对象:
obj
所以,你现在应该能够做你想做的事了。 :)
答案 2 :(得分:0)
可能会发生JSON内部的元素之一内部包含更多元素的情况。您可能不知道文件的特征(或者想拥有通用功能)。
因此,您可以对任何JSON使用一个函数:
void traversJson(QJsonObject json_obj){
foreach(const QString& key, json_obj.keys()) {
QJsonValue value = json_obj.value(key);
if(!value.isObject() ){
qDebug() << "Key = " << key << ", Value = " << value;
}
else{
qDebug() << "Nested Key = " << key;
traversJson(value.toObject());
}
}
};