英文:
Golang: custom template function "capture"
问题
我想编写一个类似于Smarty
的capture
的模板函数。我该如何捕获{{capture}}
标签内的HTML内容?请问如何实现这个功能?
英文:
<br>
I want to write template function like Smarty's
capture
.<br>
How can I capture html inside
{{capture}}
...
{{/capture}}
How to do this?
答案1
得分: 1
{{define "T1"}}一个{{end}}
{{define "T2"}}两个{{end}}
{{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
{{template "T3"}}
一个 两个
英文:
{{define "T1"}}ONE{{end}}
{{define "T2"}}TWO{{end}}
{{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
{{template "T3"}}
ONE TWO
答案2
得分: -1
你可以在应用程序中完成这个操作:使用一个模板来捕获你想要的HTML片段,渲染它,将其保存为字符串,并在后续的模板渲染中使用它。
英文:
You would do it in the application: Use a template for the HTML snippet you want to capture, render it, save it to a string and use it in subsequent template rendering.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论