今天看html/template这个包,如果我有模板a.html,里面嵌套了b.html,那么我一定要在.go文件中template.ParseFiles多个文件吗?这相当于前后端彻底耦合了呀,有没有什么办法能够直接在.html文件里import进来一个其他.html文件呢?
谢谢
可以的。
{{define "user"}}
...
{{end}}
{{template "user" .}} 即可使用user这个模版
#2