英文:
GAE Go template.Execute, passing a struct with vector
问题
我在Go应用程序中使用struct的vector.Vector来方便地存储一些数据。我想通过template.Execute在Google App Engine网页上显示来自vector的所有数据。这是否可能,我如何访问解析后的HTML文件中的数据?如果我使用数组或切片会更容易吗?
英文:
I'm storing some data in a Go app in a struct's vector.Vector for convenience. I want to display all the data from the vector on Google App Engine webpage through template.Execute. Is it possible and how would I access the data in the parsed html file? Would it be easier if I used an array or slice instead?
答案1
得分: 1
使用切片。
> Go每周快照历史2011-10-18
>
>
> container/vector
包已被删除。切片更好:
> 切片技巧。
英文:
Use slices.
> Go Weekly Snapshot History 2011-10-18
>
>
> The container/vector
package has been deleted. Slices are better:
> SliceTricks.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论