// 查找元素 auto it = doc.FindMember("field"); if (it == doc.MemberEnd()) ... // 判断是否存在 // 遍历元素 for (auto it = doc.MemberBegin(); it != doc.MemberEnd(); ++it) ...
Array
读
1 2 3 4 5 6 7 8 9 10
// 判断是否为空 arr.Empty();
// 遍历 for (auto it = arr.Begin(); it != arr.End(); ++it) // 取第一个 auto e = arr.Begin(); e.GetObject(); // 作为 Object, e.GetObject().FindMember("field") 查找元素 e.GetString(); // 作为 String
Value
创建
1 2 3 4 5 6 7 8 9
// Object Value rapidjson::Value v(rapidjson::kObjectType); // Array Value rapidjson::Value v(rapidjson::kArrayType); // String Value rapidjson::Value v("string_value"); // Number Value rapidjson::Value v(1); rapidjson::Value v(1.1);