查看JSON-C 文档,似乎没有一种简单的方法可以深入研究结构。你必须自己做。像这样的东西:
struct json_object *json_object_get_with_keys(
struct json_object *obj,
const char *keys[]
) {
while( keys[0] != NULL ) {
if( !json_object_object_get_ex(obj, keys[0], &obj) ) {
fprintf(stderr, "Can't find key %s\n", keys[0]);
return NULL;
}
keys++;
}
return obj;
}
向它传递一个以 null 结尾的键数组,它将向下钻取(或返回 null)。
const char *keys[] = {"scores", "math", "highest", NULL};
struct json_object *obj = json_object_get_with_keys(top, keys);
if( obj != NULL ) {
printf("%s\n", json_object_to_json_string(obj));
}
相反,使用JSON-Glib。它有更熟悉的JSONPath,你可以使用$.scores.english.highest
.
JsonNode *result_node = json_path_query(
"$.scores.english.highest",
json_parser_get_root(parser),
&error
);
if( error != NULL ) {
fprintf(stderr, "%s", error->message);
exit(1);
}
/* It returns a node containing an array. Why doesn't it just return an array? */
JsonArray *results = json_node_get_array(result_node);
if( json_array_get_length( results ) == 1 ) {
printf("highest: %ld\n", json_array_get_int_element(results, 0));
}
else {
fprintf(stderr, "Couldn't find it\n");
}
使用起来有点尴尬,但是您可以使用一些包装函数来处理脚手架和错误处理,从而使这更容易。