本文记录学习Gin框架踩的坑,方便大家参考
使用Golang的Gin framework开始学习,遇到
问题:
panic: html/template: pattern matches no files: src/github.com/345161974/gin_tutorial/templates/*
参考链接:http://stackoverflow.com/questions/38042181/how-to-make-templates-work-with-gin-framework
解决代码:
r.LoadHTMLGlob(filepath.Join(os.Getenv("GOPATH"), "src/github.com/345161974/gin_tutorial/templates/*"))
由于代码采用了相对路径,所以导致gin找不到template下的文件路径,采用绝对路径即可解决问题。
文章的脚注信息由WordPress的wp-posturl插件自动生成