3

我在 c 中使用 JSONC 库来创建 json。但我不能创建空值。如何使用 JSONC 库创建以下 json 数据?{“状态”:空}

4

1 回答 1

2

根据json-c库的接口,我想你可以先从对象中删除nameval对,然后添加一个NULL作为val的字段:

json_object_object_del(jexample, "status");
json_object_object_add(jexample, "status", NULL);

参考: https ://github.com/json-c/json-c/blob/master/json_object.h

参见 API 定义:

/*
 * @param obj the json_object instance
 * @param key the object field name (a private copy will be duplicated)
 * @param val a json_object or NULL member to associate with the given field
 *
 * @return On success, <code>0</code> is returned.
 *  On error, a negative value is returned.
 */
    JSON_EXPORT int json_object_object_add(struct json_object* obj, const char *key,
                       struct json_object *val);
于 2018-05-30T18:51:05.993 回答