Marshal 可以將struct 轉成json 字串. package main import ( "encoding/json" "fmt" ) type Person struct { Id int `json:"id"` Name string `json:name` } func ...
確定! 回上一頁