cJSON提供了一个函数
CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string)
我创建了一个测试功能
#include "cJSON.h"
const char *jsonstring = "{\"b\": {\"b1\":\"2b\"}}";
void jsontest(void)
{
cJSON *cJSON_data = cJSON_Parse(jsonstring);
char *buffer = cJSON_Print(cJSON_data);
printf("JSON_String:%s\r\n",buffer);
cJSON *bfound = cJSON_GetObjectItemCaseSensitive(cJSON_data,"b1");
printf("bfound: 0x%08x\n",(char*)bfound);
free(cJSON_data);
free(buffer);
}
输出是
JSON_String:{
"b": {
"b1": "2b"
}
}
bfound: 0x00000000
`
如果我使用这个字符串,
const char *jsonteststr1 = "{\"a\":\"1\",\"b\":\"2\",\"c\":\"3\"}";
GetObjectItemCaseSensitive()
将找到“a”、“b”和“c”。
GetObjectItemCaseSensitive()
似乎没有递归。
难道我做错了什么?我不明白如何使用GetObjectItem()
?
我正在使用版本 1.7.12