mirror of
https://github.com/DaveGamble/cJSON.git
synced 2024-12-26 21:04:24 +08:00
README: Caveats: Duplicate object members
This commit is contained in:
parent
d7e711c0de
commit
1e95363638
@ -29,6 +29,7 @@ Ultralightweight JSON parser in ANSI C.
|
|||||||
* [Deep Nesting Of Arrays And Objects](#deep-nesting-of-arrays-and-objects)
|
* [Deep Nesting Of Arrays And Objects](#deep-nesting-of-arrays-and-objects)
|
||||||
* [Thread Safety](#thread-safety)
|
* [Thread Safety](#thread-safety)
|
||||||
* [Case Sensitivity](#case-sensitivity)
|
* [Case Sensitivity](#case-sensitivity)
|
||||||
|
* [Duplicate Object Members](#duplicate-object-members)
|
||||||
* [Enjoy cJSON!](#enjoy-cjson)
|
* [Enjoy cJSON!](#enjoy-cjson)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
@ -517,6 +518,10 @@ However it is thread safe under the following conditions:
|
|||||||
|
|
||||||
When cJSON was originally created, it didn't follow the JSON standard and didn't make a distinction between uppercase and lowercase letters. If you want the correct, standard compliant, behavior, you need to use the `CaseSensitive` functions where available.
|
When cJSON was originally created, it didn't follow the JSON standard and didn't make a distinction between uppercase and lowercase letters. If you want the correct, standard compliant, behavior, you need to use the `CaseSensitive` functions where available.
|
||||||
|
|
||||||
|
#### Duplicate Object Members
|
||||||
|
|
||||||
|
cJSON supports parsing and printing JSON that contains objects that have multiple members with the same name. `cJSON_GetObjectItemCaseSensitive` however will always only return the first one.
|
||||||
|
|
||||||
# Enjoy cJSON!
|
# Enjoy cJSON!
|
||||||
|
|
||||||
- Dave Gamble (original author)
|
- Dave Gamble (original author)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user