对于以下代码,我收到错误:
type A struct{
B_j []B `json:"A"`
}
type B struct
{
X string
Y string
}
func main() {
xmlFile, _ := os.Open("test.xml")
b, _ := ioutil.ReadAll(xmlFile)
var t root
err2 := xml.Unmarshal(b, &rpc)
if err2 != nil {
fmt.Printf("error: %v", err2)
return
}
for _, name := range t.name{
t := A{B_j : []B{X : name.text, Y: name.type }} // line:#25
s, _ := json.MarshalIndent(t,"", " ")
os.Stdout.Write(s)
}
}
# command-line-arguments
./int2.go:25: undefined: X
./int2.go:25: cannot use name.Text (type string) as type B in array or slice literal
./int2.go:25: undefined: Y
./int2.go:25: cannot use name.type (type string) as type B in array or slice literal
在我的输出中,我试图实现这样的目标:
{A: {{X:1 ,Y: 2}, {X:2 ,Y: 2}, {X: 2,Y: 2}}}
struct调用另一个结构来获取上面的模式。
答案 0 :(得分:1)
看来你在这一行有问题 -
t := A{B_j: []B{X: name.text, Y: name.type }}
您没有正确创建切片。试试以下 -
t := A{B_j: []B{{X: name.text, Y: name.type}}}
让我们做得更好 -
var bj []B
for _, name := range t.name{
bj = append(bj, B{X: name.text,Y: name.type})
}
t := A{B_j: bj}
s, _ := json.MarshalIndent(t,"", " ")
os.Stdout.Write(s)
具有静态值https://play.golang.org/p/a2ZDV8lgWP
的示例程序注意:type
是语言关键字,请勿将其用作变量名称。