标签: c json libjson
我通过“ json-c / json.h”解析C语言中的json。
我具有以下结构:section: [ {item: {...}, item: {...}, ..., item: {...}} ]
section: [ {item: {...}, item: {...}, ..., item: {...}} ]
我可以通过以下方式获得一件商品:
struct json_object item = json_object_object_get(section, "item");
如何获取项目计数并解析所有项目?