我正在使用https://github.com/nlohmann/json将 JSON 文件加载到我的程序中。
此刻,我正在加载它:
json jsonFile;
ifstream ifs("data/test.json");
ifs >> jsonFile;
// create JSON from stream
json j_complete(jsonFile);
我可以通过以下方式访问它:
jsonFile["data"][X][Y] // X, Y are indexes
但我想从中创建向量 - 我该怎么做?
这是此文件的示例:
{
"cols": [
"id",
"title",
"quantity",
"price"
],
"data": [
[
12,
"Guzman",
6,
"6.31"
],
[
2,
"..",
5,
"4.34"
],
[
3,
"Goldeniererere",
14,
"4.15"
]
]
}