QT中的QVariantMap Json解析
我使用以下代码进行解析:
QJson::Parser parser;
bool ok;
QVariantMap result=parser.parse (cityReply->readAll(),&ok).toMap();
if (!ok)
{
qFatal("An error occurred during parsing");
exit (1);
}
foreach (QVariant city, result.toList())
{
QVariantMap names = city.toMap();
qDebug() << "\t-" << names["name"].toString();
}
我的 json 字符串是 [{"id":2,"name":"AAA"},{"id":1,"name":"BBB"}]< /代码>。
我收到以下错误:
“class QVariantMap”没有名为“toList”的成员。
是否可以将 QMap 转换为 QList?
I am using the following code for parsing:
QJson::Parser parser;
bool ok;
QVariantMap result=parser.parse (cityReply->readAll(),&ok).toMap();
if (!ok)
{
qFatal("An error occurred during parsing");
exit (1);
}
foreach (QVariant city, result.toList())
{
QVariantMap names = city.toMap();
qDebug() << "\t-" << names["name"].toString();
}
My json String is [{"id":2,"name":"AAA"},{"id":1,"name":"BBB"}]
.
I got the following error:
'class QVariantMap' has no member named 'toList'.
is it possible to convert the QMap to QList?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
result
包含一个序列化数组作为QVariant
。您需要在调用 toList() 函数之前提取它。由于数组未在 Json 字符串中命名,因此您可以通过获取映射中的第一个 QVariant 并执行您在问题中编写的操作来访问它。result
contain a serialized array asQVariant
. You need to extract it before calling thetoList()
function. Since array is not named in Json string, you can access it by getting the firstQVariant
in the map and the doing what you have written in the question.