## conf\_ubjson\_t ### 概述 ![image](images/conf_ubjson_t_0.png) conf json对象。 ---------------------------------- ### 函数

| 函数名称 | 说明 | | -------- | ------------ | | conf\_ubjson\_load | | | conf\_ubjson\_save\_as | 将doc对象保存到指定URL。 | #### conf\_ubjson\_load 函数 ----------------------- * 函数功能: >

* 函数原型: ``` object_t* conf_ubjson_load (const char* url, bool_t create_if_not_exist); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回配置对象。 | | url | const char* | 路径(通常是文件路径)。 | | create\_if\_not\_exist | bool\_t | 如果不存在是否创建。 | #### conf\_ubjson\_save\_as 函数 ----------------------- * 函数功能: >

将doc对象保存到指定URL。 * 函数原型: ``` ret_t conf_ubjson_save_as (object_t* obj, const char* url); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败 | | obj | object\_t* | doc对象。 | | url | const char* | 保存的位置。 |