improve conf_io doc

This commit is contained in:
lixianjing 2023-07-27 18:36:19 +08:00
parent 60c728b2e4
commit bc00f3c945
3 changed files with 9 additions and 3 deletions

View File

@ -5,6 +5,7 @@
* 修复克隆 rich\_text 对象失败的问题(感谢智明提供补丁)
* 修复在 scrollable 的 tab\_button\_group 上面快速点击有概率会导致瞬移的问题(感谢智明提供补丁)
* 完善layout(感谢兆坤提供补丁)
* 完善conf\_io的文档(感谢俊杰提供补丁);
2023/07/26
* 修改Windows下路径带中文时fs\_os\_get\_exe的返回结果不是utf8的问题(感谢朝泽提供补丁)

View File

@ -619,7 +619,7 @@ ret_t application_exit() {
## 9. 注意事项
* . 作为 key 的分隔符。
* 英文的点(.) 作为 key 的分隔符,所以 key 不能包含英文的点(.)
* ini 格式不支持注释和换行。

View File

@ -49,7 +49,7 @@ test.json 文件内容
"age" : 100,
"weight" : 60.5000
}
}c
}
```
示例代码
@ -87,4 +87,9 @@ test.json 文件内容
ASSERT_NE(conf, (object_t*)NULL);
```
> 更多用法请参考tests/conf_json_test.cc
> 更多用法请参考tests/conf_json_test.cc
## 注意:
* 英文的点(.) 作为 key 的分隔符,所以 key 不能包含英文的点(.)。