Golang:多结构元帅问题:json格式



对于以下代码,我收到错误:

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}}}
结构

调用另一个结构以获取上面的模式。

看来你在这一行有问题-

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语言关键字,请勿将其用作变量名。

最新更新