当前位置: 代码迷 >> 综合 >> gin框架 访问报错html/template: users/index.tmpl is undefined panic: template: index.tmpl:13: unexpectecd
  详细解决方案

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

热度:42   发布时间:2023-11-24 02:52:41.0

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

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

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

注意结尾

  相关解决方案