Golang how can I access a slices fields from html/template

huangapple go评论86阅读模式
英文:

Golang how can I access a slices fields from html/template

问题

我有一个[]struct{},这个[]struct{}有一个名为ThreadName的字段,我想在模板中访问它,像这样:

{{ index .Posts 0 $.ThreadName}}

不太确定如何正确实现这个,任何信息都会很有帮助,谢谢。

英文:

I have a []struct{} and that []struct{} has a field called ThreadName and I'm trying to access that from in the template like so:

{{ index .Posts 0 $.ThreadName}}

not sure how to do this properly any information would be great thanks.

答案1

得分: 4

使用以下代码来获取第一篇帖子的线程名称:

{{(index .Posts 0).ThreadName}}

playground示例

英文:

Use the following to access the thread name of the first post:

{{(index .Posts 0).ThreadName}}

playground example

huangapple
  • 本文由 发表于 2015年12月13日 12:42:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/34248059.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定