mirror of
https://gitee.com/johng/gf
synced 2026-06-30 19:17:30 +08:00
12 lines
172 B
Go
12 lines
172 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g/encoding/gjson"
|
|
)
|
|
|
|
func main() {
|
|
j := gjson.New(nil)
|
|
j.Set("array", []int{1,2,3})
|
|
j.Append("array", 4)
|
|
j.Dump()
|
|
} |