3
แปลง Go map เป็น json
ฉันพยายามแปลงแผนที่ Go ของฉันเป็นสตริง json ด้วยencoding/jsonMarshal แต่ส่งผลให้สตริงว่างเปล่า นี่คือรหัสของฉัน: package main import ( "encoding/json" "fmt" ) type Foo struct { Number int `json:"number"` Title string `json:"title"` } func main() { datas := make(map[int]Foo) for i := 0; i < 10; i++ { datas[i] = Foo{Number: 1, Title: "test"} } jsonString, _ := …