美文网首页
Gin-返回数据-HTML静态页面

Gin-返回数据-HTML静态页面

作者: 诗意_面包 | 来源:发表于2020-07-06 14:49 被阅读0次
    package main
    
    import (
        "github.com/gin-gonic/gin"
        "net/http"
    )
    
    func main()  {
        app := gin.Default()
        // 指明html加载文件目录
        app.LoadHTMLGlob("./html/*")
        app.Handle("GET", "/", func(context *gin.Context) {
            // 返回HTML文件,响应状态码200,html文件名为index.html,模板参数为nil
            context.HTML(http.StatusOK, "index.html", nil)
        })
        app.Run()
    }
    

    相关文章

      网友评论

          本文标题:Gin-返回数据-HTML静态页面

          本文链接:https://www.haomeiwen.com/subject/fxgwqktx.html