使用 QJSON 解析 JSON
我的 json 输出看起来像 [{"id":2,"name":"AAA"},{"id":1,"name":"BBB"}]。我想在 mac 中使用 Qjson 解析它。我正在尝试解析但无法获得任何输出。请帮我。
提前致谢。
My json output look like [{"id":2,"name":"AAA"},{"id":1,"name":"BBB"}]. I want to parse this using Qjson in mac. I am trying to parsing but I could not get any outputs . please help me.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题很简单,JSON 表示意味着一个记录数组。
您尝试在不使用迭代器或循环的情况下访问记录。
使用下面的代码片段将 QVariant 转换为列表
,然后循环记录,例如:
I think that the issue is quite simple, the JSON representation implies an Array of records.
You are trying to access the record without using an iterator or a loop.
Use the snippet below to transform the QVariant into a list
And then loop against records for example: