douhui4699 2017-02-03 10:44
浏览 105
已采纳

转到模板:一起使用嵌套结构的字段和{{range}}标签

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条回答 默认 最新

  • douwang4374 2017-02-03 10:52
    关注

    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.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容