方法 1(不需要渲染参数时使用)
http.ServeFile(c.Writer,c.Request,"index.html")
方法 2(通用方法)
template.Must(template.ParseFiles("web-05/upload.html")).Execute(c.Writer, map[string]interface{}{"number": 23, })
方法 3( 专属于 gin 的方法)
r.LoadHTMLGlob("template/*")
r.GET("/", func(c *gin.Context) {
c.HTML(200,"index.html",gin.H{})
})