rapidjson addmember
-
[C++, rapidjson] AddMember 시의 형변환 문제프로그래밍/C++ 2019. 5. 14. 13:06
rapidjson 을 사용해 array 형태의 json message 를 만들다보니.. 내가 원하는건 std::string 을 사용해서 A :{[B:C, D:F]} 형태로 모두 string 으로 이뤄진 배열을 만드는 것. rapidjson::Document tempres; tempres.SetObject(); rapidjson::Value integrityArray(rapidjson::kArrayType); rapidjson::Document::AllocatorType& allocator = tempres.GetAllocator(); for (auto iter : *objArray) { rapidjson::Value objValue; rapidjson::Value strValue; objValue.Set..