英文:
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}}
英文:
Use the following to access the thread name of the first post:
{{(index .Posts 0).ThreadName}}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论