gin框架 访问报错html/template: "users/index.tmpl" is undefined panic: template: index.tmpl:13: unexpectecd

参考博客:
Golang 开发框架 gin 项目时笔记

如果非要按照官方文档,请注意模板文件开头一定要定义

{{ define "posts/index.tmpl" }}
<html><h1>
	{{ .title }}
</h1>
<p>Using posts/index.tmpl</p>
</html>
{{ end }}

注意结尾

发布了100 篇原创文章 · 获赞 15 · 访问量 4万+

猜你喜欢

转载自blog.csdn.net/qq_37767455/article/details/104671865
今日推荐