官方案例中用的是.tmpl 也可以router.LoadHTMLFiles用.html, .tmpl和.html有什么区别呢
func main() {
router := gin.Default()
router.LoadHTMLGlob("templates/*")
//router.LoadHTMLFiles("templates/template1.html", "templates/template2.html")
router.GET("/index", func(c *gin.Context) {
c.HTML(http.StatusOK, "index.tmpl", gin.H{
"title": "Main website",
})
})
router.Run(":8080")
}
有疑问加站长微信联系(非本文作者)