mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
20 lines
266 B
Go
20 lines
266 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/container/gmap"
|
|
)
|
|
|
|
func main() {
|
|
m := gmap.New()
|
|
m.Sets(g.MapAnyAny{
|
|
"name": "john",
|
|
"score": 100,
|
|
})
|
|
b, _ := json.Marshal(m)
|
|
fmt.Println(string(b))
|
|
}
|