Go 結構體 Json 互轉

衣舞晨風發表於2017-11-15

1、結構體轉Json

jsons, errs := json.Marshal(cert)
if errs != nil {
    fmt.Println(errs.Error())
}
fmt.Println(string(jsons))

2、Json轉結構體
···
cert1 := new(lbv1alpha1.Cert)
json.Unmarshal([]byte(jsons), &cert1)//json解析到結構體裡面
fmt.Println(cert1)
···

需要引用的包:

···

encoding/json

···

個人微信公眾號:
這裡寫圖片描述

作者:jiankunking 出處:http://blog.csdn.net/jiankunking

相關文章