Go Gin使用html模板:访问html页面
package mainimport ( "github.com/gin-gonic/gin")func Hello(ctx *gin.Context){ ctx.HTML(200,"index.html",nil)}func main() { router := gin.Default() router.LoadHTMLGlob("template/*") router.GET("/index",Hello) ro