Go 中区分大小写的 JSON Unmarshal
Go 中的 json.Unmarshal 函数提供了一种将 JSON 数据反序列化为结构体的方法。默认情况下,Unmarshal 在 JSON 键和结构体字段名称或标签之间执行不区分大小写的匹配。但是,在某些情况下,可能需要区分大小写的匹配。
问题
假设您收到带有“e”和“等标签的 JSON 数据E”。您想要解组带有标签“e”的对象并忽略带有“E”的对象。使用默认的不区分大小写的匹配,Unmarshal 将接受两个标签并相应地解组结构。
解决方案
不幸的是,标准 json 库当前不支持大小写 - Unmarshal 的敏感匹配。根据官方文档:
To unmarshal JSON into a struct, Unmarshal matches incoming object keys to the keys used by Marshal (either the struct field name or its tag), preferring an exact match but also accepting a case-insensitive match.
因此,使用标准 json 库无法禁用不区分大小写的匹配。
以上是如何在 Go 中实现区分大小写的 JSON Unmarshal?的详细内容。更多信息请关注PHP中文网其他相关文章!