目录
  • 前言
  • JSON解析实践
    • 标准库encoding/json
    • 第三方库json-iterator
  • 收集到开源项目jinzaigo/xutil中
    • 总结

      前言

      php转go是大趋势,越来越多公司的php服务都在用go进行重构,重构过程中,会发现php的json解析操作(系列化与反序列化)是真的香,弱类型语言的各种隐式类型转换,很大程度的减低了程序的复杂度。反观go使用标准库encoding/json,来做json解析就没有那么愉快了(只要数据类型定义不对,就很容易抛error)

      JSON解析实践

      案例:用go重构的服务,对接的上游还是php服务,这时php接口输出的json串为{"name":"AppleWatchS8","price":"3199"} ,其中price字段应该得为float类型,但由于php弱类型语言,没有强制约束输出类型的机制,就很容易出现这种输出类型不对的情况,然后到go服务里得怎么处理呢?

      标准库encoding/json

      package main import ( "encoding/json" "fmt" ) type ProductInfo struct { Name string `json:"name"` Price float32 `json:"price"` } func main() { str := "{"name":"AppleWatchS8","price":"3199"}" data := ProductInfo{} if err := json.Unmarshal([]byte(str), &data); err != nil { fmt.Println("error: " + err.Error()) } else { fmt.Println(data) } } //输出结果 //error: json: cannot unmarshal string into Go struct field ProductInfo.price of type float32 

      显然,使用go标准库做json解析,是应对不了这种类型不一致的情况的。下面则借助第三方库的能力来做处理

      第三方库json-iterator

      简单介绍:

      执行速度:jsoniter 的 Golang 版本可以比标准库(encoding/json)快 6 倍之多

      两个特点:

      • 完全兼容标准库,也就是API用法完全一样,原有逻辑代码不需要改动,只需要替换import包名
      • 提供了一个PHP兼容模式,可以自动转换字符串/数字弱类型问题,可以将空数组[]转换为空结构体(解决PHP中的array输出为[]的问题)。注意,该兼容模式需要手动开启

      安装方式:go get -u github.com/json-iterator/go

      具体代码实现:

      package main import ( "fmt" jsoniter "github.com/json-iterator/go" "github.com/json-iterator/go/extra" ) var json = jsoniter.ConfigCompatibleWithStandardLibrary func init() { extra.RegisterFuzzyDecoders() //开启PHP兼容模式 } type ProductInfo struct { Name string `json:"name"` Price float32 `json:"price"` } func main() { str := "{"name":"AppleWatchS8","price":"3199"}" data := ProductInfo{} if err := json.Unmarshal([]byte(str), &data); err != nil { fmt.Println("error: " + err.Error()) } else { fmt.Println(data) } } //输出结果 //{AppleWatchS8 3199} 

      看输出结果,会发现用了这个库并且开启了PHP兼容模式,json中price字段string类型,就会自动转换为结构体中定义的float32类型,这样我们在使用price字段处理业务逻辑时,就只需要按float32做处理就行,不用进行类型断言。这个库解决了json解析类型转换问题的同时,也能极大的提高我们开发效率。

      收集到开源项目jinzaigo/xutil中

      这个第三库用起来如此方便,那肯定是要收录进来的,将替换包名、手动开启PHP兼容模式、还有常用的API方法(系列化与反序列化操作),统一封装进来,简化使用流程。

      同时,为了便于后续扩展更多的兼容模式,所以将代码都放在xjson目录下

      使用示例:

      go get -u github.com/jinzaigo/xutil 之后,import github.com/jinzaigo/xutil/xjson,即可通过xjson.Unmarshal()等方法,进行json解析操作

      package main import ( "fmt" "github.com/jinzaigo/xutil/xjson" ) type ProductInfo struct { Name string `json:"name"` Price float32 `json:"price"` } func main() { str := "{"name":"AppleWatchS8","price":"3199"}" data := ProductInfo{} if err := xjson.Unmarshal([]byte(str), &data); err != nil { fmt.Println("error: " + err.Error()) } else { fmt.Println(data) } }

      总结

      业务系统从php转go,或go对接php服务,都会遇到这个因为数据类型不一致导致json解析错误的共性问题。使用第三方库json-iterator能很好的解决我们的痛点,并且比标准库执行速度还更快。

      到此这篇关于Go语言实现JSON解析的神器详解的文章就介绍到这了,更多相关Go语言解析JSON内容请搜索本网站以前的文章或继续浏览下面的相关文章希望大家以后多多支持本网站!

      您可能感兴趣的文章:

      • Go与Rust高性能解析JSON实现方法示例
      • golang解析json数据的4种方法总结
      • Golang解析JSON遇到的坑及解决方法
      • Go语言学习之JSON编码解析与使用
      • 一文带你了解Go语言如何解析JSON
      • Go语言JSON解析器gjson使用方法详解
      • Golang实现解析JSON的三种方法总结
      • golang生成JSON以及解析JSON
      • Go 语言 json解析框架与 gjson 详解
      • go语言用八百行代码实现一个JSON解析器
      • Go语言实现JSON解析的方法详解
      • GO中Json解析的几种方式