我有一个JSON对象的数组,比如jsonArr,如下所示:
[
{ "attr1" : "somevalue",
"attr2" : "someothervalue"
},
{ "attr1" : "yetanothervalue",
"attr2" : "andsoon"
},
...
]
使用jsoncpp,我尝试遍历数组并检查每个对象是否有成员"attr1"
,在这种情况下,我想将相应的值存储在向量values
中。
我试过
Json::Value root;
Json::Reader reader;
Json::FastWriter fastWriter;
reader.parse(jsonArr, root);
std::vector<std::string> values;
for (Json::Value::iterator it=root.begin(); it!=root.end(); ++it) {
if (it->isMember(std::string("attr1"))) {
values.push_back(fastWriter.write((*it)["uuid"]));
}
}
但一直收到错误信息
libc++abi.dylib: terminating with uncaught exception of type Json::LogicError: in Json::Value::find(key, end, found): requires objectValue or nullValue
2条答案
按热度按时间xyhw6mcr1#
很好的自我解释:
d7v8vwbk2#
除了@Sga的建议,我建议使用一个范围for循环:
我发现这更易读,而且它节省了对
size()
的额外调用以及索引检索。