2

我问了这个问题,答案对于常规(非嵌套)对象非常有效:

[
  {
    "Name": "test",
    "Val": "test_val"
  },
  {
    "Name": "test2",
    "Val": "test_val2"
  }
]

使用结构:

struct Test {
  string Name;
  string Val;
};

但是,当我尝试使用嵌套结构时,如下所示:

struct Inner {
  string Name;
  string Value;
};

struct Outer {
  string Display;
  int    ID;
  Inner  Nested
};

//with json

"
[
  {
    "Display": "abcd",
    "ID": 100,
    "Nested": {
      "Name": "Test Name",
      "Value": "Test Value"
    }
  }
]
"

它给了我这个错误:

In function 'void from_json(const json&, Outer&)':
parser/run.cc:16:41: error: no matching function for call to 'nlohmann::basic_json<>::get_to(std::vector<Inner>&) const'
     j.at("Inner").get_to(p.Inner);
4

1 回答 1

3

错误消息听起来像是您为 编写了一个辅助函数Outer,但不是Inner。只要为每个用户定义的类型编写一个辅助函数,库就可以处理嵌套结构:

void from_json(const nlohmann::json& j, Inner& i) {
    j.at("Name").get_to(i.Name);
    j.at("Value").get_to(i.Value);
}

void from_json(const nlohmann::json& j, Outer& o) {
    j.at("Display").get_to(o.Display);
    j.at("ID").get_to(o.ID);
    j.at("Nested").get_to(o.Nested);
}

然后它就像你想要的那样工作:

auto parsed = json.get<std::vector<Outer>>();

演示:https ://godbolt.org/z/pGsxxn

于 2020-02-21T02:40:14.000 回答