gpt4 book ai didi

转到模板 : Use nested struct's field and {{range}} tag together

转载 作者:IT王子 更新时间:2023-10-29 02:03:36 28 4
gpt4 key购买 nike

我有以下嵌套结构,我想在模板中的 {{range .Foos}} 标记中迭代它们。

type Foo struct {
Field1, Field2 string
}

type NestedStruct struct {
NestedStructID string
Foos []Foo
}

我正在尝试使用以下 html/模板,但它无法从 NestedStruct 访问 NestedStructID

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

golang 模板有什么办法可以做我想做的事吗?

最佳答案

您无法像那样访问 NestedStructID 字段,因为 {{range}} 操作设置了管道(点 .)在对当前元素的每次迭代中。

您可以使用 $ 设置为传递给 Template.Execute() 的数据参数;因此,如果您传递 NestedStruct 的值,则可以使用 $.NestedStructID

例如:

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}}`

输出(在 Go Playground 上尝试):

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

这记录在 text/template 中:

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

关于转到模板 : Use nested struct's field and {{range}} tag together,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42022392/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com