最佳答案
我有一段结构。
type Config struct {
Key string
Value string
}
// I form a slice of the above struct
var myconfig []Config
// unmarshal a response body into the above slice
if err := json.Unmarshal(respbody, &myconfig); err != nil {
panic(err)
}
fmt.Println(config)
下面是结果:
[{key1 test} {web/key1 test2}]
如何搜索这个数组以获得 key="key1"
所在的元素?