我有两个结构,一个包含一个字段,另一个包含三个字段:-
type User struct {
Name []CustomerDetails `json:"name" bson:"name"`
}
type CustomerDetails struct {
Value string `json:"value" bson:"value"`
Note string `json:"note" bson:"note"`
SendNotifications bool `json:"send_notifications" bson:"send_notifications"`
}
CustomerDetails我想使用User结构字段访问字段
func main() {
var custName User
custName.Name.Value = "ABC"
fmt.Println(custName)
}
但它给了我错误
custName.Name.Value 未定义(类型 []CustomerDetails 没有字段或方法值)
我将如何解决这个错误?谁能帮我?
湖上湖
肥皂起泡泡
相关分类