Go Template : Use nested struct's field and {{range}} tag together

我的未来我决定 提交于 2019-12-24 06:34:51

问题


I have the following nested struct and I would like to iterate them in a template, in a {{range .Foos}} tag.

type Foo struct {
    Field1, Field2 string
}

type NestedStruct struct {
    NestedStructID string
    Foos []Foo
}

I'm trying with the following html/template but it can't access the NestedStructID from NestedStruct.

{{range .Foos}} { source: '{{.Field1}}', target: '{{.NestedStructID}}' }{{end}}

Is there any way with golang templates to do what I'd like to do?


回答1:


You can't reach the NestedStructID field like that because the {{range}} action sets the pipeline (the dot .) in each iteration to the current element.

You may use the $ which is set to the data argument passed to Template.Execute(); so if you pass a value of NestedStruct, you can use $.NestedStructID.

For example:

func main() {
    t := template.Must(template.New("").Parse(x))

    ns := NestedStruct{
        NestedStructID: "nsid",
        Foos: []Foo{
            {"f1-1", "f2-1"},
            {"f1-2", "f2-2"},
        },
    }
    fmt.Println(t.Execute(os.Stdout, ns))
}

const x = `{{range .Foos}}{ source: '{{.Field1}}', target: '{{$.NestedStructID}}' }
{{end}}`

Output (try it on the Go Playground):

{ source: 'f1-1', target: 'nsid' }
{ source: 'f1-2', target: 'nsid' }
<nil>

This is documented in text/template:

When execution begins, $ is set to the data argument passed to Execute, that is, to the starting value of dot.



来源:https://stackoverflow.com/questions/42022392/go-template-use-nested-structs-field-and-range-tag-together

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!