我有以下结构:type OpList struct { Name xml.Name `xml:"Ser"` Servs []Ser `xml:"Ser"`}我有一个方法:func GetInfo() (*OpList, error){ //If I print here the results gets printed fmt.Println(OpList.Servs) return OpList, nil}访问列表在方法内部完全正常但是当我调用这个方法并尝试访问它时失败并显示消息:multiple-value in a single value contextbn:=GetInfo()fmt.Printf(bn.Servs)我实际上也没有在网络上获得那么多信息。如何访问从这样的典型方法返回的值?
- 1 回答
- 0 关注
- 212 浏览
添加回答
举报
0/150
提交
取消