以下常用方法列表,文档更新可能滞后于代码新特性,更多的方法及示例请参考代码文档:https://pkg.go.dev/github.com/gogf/gf/v2/encoding/gjson

Add

  • 说明:

  • 格式:

    1. func New(data interface{}, safe ...bool) *Json
  • 示例:

    1. func ExampleNew() {
    2. jsonContent := `{"name":"john", "score":"100"}`
    3. j := gjson.New(jsonContent)
    4. fmt.Println(j.Get("name"))
    5. fmt.Println(j.Get("score"))
    6. // Output:
    7. // john
    8. // 100
    9. }

Add

  • 说明:

  • 格式:

  • 示例: