您无法到达那样的
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:
开始执行时,将$设置为传递给Execute的数据参数,即dot的起始值。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)