2

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

使用 json-spirit 对我来说更容易,但因为我想稍后发出 REST 请求,所以我想我会省去字符串/wstring 的疯狂,并使用 CPP REST SDK 的 json 类。

我想要实现的是这样的 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 写入文件?

4

1 回答 1

5

这可以帮助您:

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"
      ]
   }
}
于 2017-07-11T13:22:25.933 回答