json Array 的parser 方式 package main import ( "encoding/json" "fmt" ) type Person struct { Id int `json:"id"` Name string `json:name` } type Persons struct ...
確定! 回上一頁