CPP REST SDK JSON - 如何创建 JSON w/数组并写入文件

CPP REST SDK JSON - How to create JSON w/ Array and write to file

我在使用 CPP REST SDK 的 JSON 类 时遇到问题。我不知道什么时候使用 json::valuejson::objectjson::array。尤其是后两者,看起来很像。 json::array 的用法对我来说也很不直观。最后我想将 JSON 写入文件或至少写入 stdcout,这样我就可以检查它是否正确。

使用 json-spirit 对我来说更容易,但由于我想稍后发出 REST 请求,我想我应该避免 string/wstring 的疯狂并使用 json 类 CPP REST SDK。

我想要实现的是一个像这样的JSON文件:

{
  "foo-list" : [
      {
        "bar" : "value1",
        "bob" : "value2"
      }
  ]
}

这是我试过的代码:

json::value arr;
int i{0};
for(auto& thing : things)
{
  json::value obj;
  obj[L"bar"] = json::value::string(thing.first);
  obj[L"bob"] = json::value::string(thing.second);
  arr[i++] = obj;
}
json::value result;
result[L"foo-list"] = arr;

我真的需要这个额外的计数器变量 i 吗?显得比较不雅观。使用 json::array/json::object 会让事情变得更好吗?以及如何将我的 JSON 写入文件?

这可以帮助你:

json::value output;
output[L"foo-list"][L"bar"] = json::value::string(utility::conversions::to_utf16string("value1"));
output[L"foo-list"][L"bob"] = json::value::string(utility::conversions::to_utf16string("value2"));

output[L"foo-list"][L"bobList"][0] = json::value::string(utility::conversions::to_utf16string("bobValue1"));
output[L"foo-list"][L"bobList"][1] = json::value::string(utility::conversions::to_utf16string("bobValue1"));
output[L"foo-list"][L"bobList"][2] = json::value::string(utility::conversions::to_utf16string("bobValue1"));

如果你想创建列表,比如bobList,你真的需要使用一些迭代器变量。 否则你只会得到一堆单独的变量。

要输出到控制台,请使用

cout << output.serialize().c_str();

最后,这将导致

{
   "foo-list":{
      "bar":"value1",
      "bob":"value2",
      "bobList":[
         "bobValue1",
         "bobValue1",
         "bobValue1"
      ]
   }
}