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.

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

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?