标签:ring struct highlight Golan 解码 str type ola file
type Feed struct {
Name string `json:"site"`
URI string `json:"link"`
Type string `json:"type"`
}
// 将文件解码到一个切片里 30
// 这个切片的每一项是一个指向一个Feed类型值的指针
var feeds []*Feed
err = json.NewDecoder(file).Decode(&feeds)
标签:ring struct highlight Golan 解码 str type ola file
原文地址:https://www.cnblogs.com/si812cn/p/9565879.html