を作成し、私は、配列が表示されない理由を説明してくださいJSON配列Golangは、JSON配列
type Data struct {
Veggies Vegetables
array array } type array map[string] []int
func main(){
vegetables := Vegetables{}
vegetables["Carrots"] = 21
n:= array{}
n ["array"]= [] int {1, 1 ,1}
d := Data{ vegetables,n}
json.MarshalIndent(d, "", " ")}
を作成しようか!
出力::{ "野菜":{ "ニンジン":21 } GOの
https://golang.org/pkg/encoding/json/#Marshal
が、この本は、言語の入門として最適です} –