gjson除了能够灵活解析、检索未知数据结构内容,还能够动态创建和修改数据结构内容。

动态创建

示例1,简单使用

  1. func main() {
  2. j := gjson.New(nil)
  3. j.Set("name", "John")
  4. j.Set("score", 99.5)
  5. fmt.Printf(
  6. "Name: %s, Score: %v\n",
  7. j.Get("name").String(),
  8. j.Get("score").Float32(),
  9. )
  10. fmt.Println(j.MustToJsonString())
  11. // Output:
  12. // Name: John, Score: 99.5
  13. // {"name":"John","score":99.5}
  14. }

示例2,创建数组

  1. func main() {
  2. j := gjson.New(nil)
  3. for i := 0; i < 5; i++ {
  4. j.Set(fmt.Sprintf(`%d.id`, i), i)
  5. j.Set(fmt.Sprintf(`%d.name`, i), fmt.Sprintf(`student-%d`, i))
  6. }
  7. fmt.Println(j.MustToJsonString())
  8. // Output:
  9. // [{"id":0,"name":"student-0"},{"id":1,"name":"student-1"},{"id":2,"name":"student-2"},{"id":3,"name":"student-3"},{"id":4,"name":"student-4"}]
  10. }

动态修改

  1. func main() {
  2. data :=
  3. `{
  4. "users" : {
  5. "count" : 2,
  6. "list" : [
  7. {"name" : "Ming", "score" : 60},
  8. {"name" : "John", "score" : 59}
  9. ]
  10. }
  11. }`
  12. if j, err := gjson.DecodeToJson(data); err != nil {
  13. panic(err)
  14. } else {
  15. j.Set("users.list.1.score", 100)
  16. fmt.Println("John Score:", j.Get("users.list.1.score").Float32())
  17. fmt.Println(j.MustToJsonString())
  18. }
  19. // Output:
  20. // John Score: 100
  21. // {"users":{"count":2,"list":[{"name":"Ming","score":60},{"name":"John","score":100}]}}
  22. }

JSON数据通过gjson包读取后,可以通过Set方法改变内部变量的内容,当然也可以新增/删除内容,当需要删除内容时,设定的值为nil即可。gjson包的数据运行时修改特性非常强大,在该特性的支持下,各种数据结构的编码/解析显得异常的灵活方便。

gjson除了能够灵活解析、检索未知数据结构内容,还能够动态创建和修改数据结构内容。

动态创建

示例1,简单使用

  1. func main() {
  2. j := gjson.New(nil)
  3. j.Set("name", "John")
  4. j.Set("score", 99.5)
  5. fmt.Printf(
  6. "Name: %s, Score: %v\n",
  7. j.Get("name").String(),
  8. j.Get("score").Float32(),
  9. )
  10. fmt.Println(j.MustToJsonString())
  11. // Output:
  12. // Name: John, Score: 99.5
  13. // {"name":"John","score":99.5}
  14. }

示例2,创建数组

  1. func main() {
  2. j := gjson.New(nil)
  3. for i := 0; i < 5; i++ {
  4. j.Set(fmt.Sprintf(`%d.id`, i), i)
  5. j.Set(fmt.Sprintf(`%d.name`, i), fmt.Sprintf(`student-%d`, i))
  6. }
  7. fmt.Println(j.MustToJsonString())
  8. // Output:
  9. // [{"id":0,"name":"student-0"},{"id":1,"name":"student-1"},{"id":2,"name":"student-2"},{"id":3,"name":"student-3"},{"id":4,"name":"student-4"}]
  10. }

动态修改

  1. func main() {
  2. data :=
  3. `{
  4. "users" : {
  5. "count" : 2,
  6. "list" : [
  7. {"name" : "Ming", "score" : 60},
  8. {"name" : "John", "score" : 59}
  9. ]
  10. }
  11. }`
  12. if j, err := gjson.DecodeToJson(data); err != nil {
  13. panic(err)
  14. } else {
  15. j.Set("users.list.1.score", 100)
  16. fmt.Println("John Score:", j.Get("users.list.1.score").Float32())
  17. fmt.Println(j.MustToJsonString())
  18. }
  19. // Output:
  20. // John Score: 100
  21. // {"users":{"count":2,"list":[{"name":"Ming","score":60},{"name":"John","score":100}]}}
  22. }

JSON数据通过gjson包读取后,可以通过Set方法改变内部变量的内容,当然也可以新增/删除内容,当需要删除内容时,设定的值为nil即可。gjson包的数据运行时修改特性非常强大,在该特性的支持下,各种数据结构的编码/解析显得异常的灵活方便。