为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Gin 路由器中渲染静态文件?

如何在 Gin 路由器中渲染静态文件?

Go
慕姐4208626 2023-07-10 14:53:59
我想使用 gin 服务器提供 JSON 文件。并在 HTML 文件中设置一些自定义值。在其中使用 JavaScript 来调用 JSON 文件。我的应用程序结构:.├── main.go└── templates    ├── index.html    └── web.json我将这些基本源代码放入main.go文件中:package mainimport (    "net/http"    "github.com/gin-gonic/gin")var router *gin.Enginefunc main() {    router = gin.Default()    router.LoadHTMLGlob("templates/*")    router.GET("/web", func(c *gin.Context) {        c.HTML(            http.StatusOK,            "index.html",            gin.H{                "title": "Web",                "url":   "./web.json",            },        )    })    router.Run()}文件中的一些代码templates/index.html:<!doctype html><html>  <head>    <title>{{ .title }}</title>    // ...  </head>  <body>    <div id="swagger-ui"></div>    // ...        <script>      window.onload = function() {        // Begin Swagger UI call region        const ui = SwaggerUIBundle({          url: "{{ .url }}",          dom_id: '#swagger-ui',          // ...        })        // End Swagger UI call region        window.ui = ui      }    </script>  </body></html>运行应用程序时,我收到获取错误:未找到./web.json那么我应该如何web.json在Gin内部服务器中提供要访问的文件呢?
查看完整描述

2 回答

?
慕村9548890

TA贡献1884条经验 获得超4个赞

引用原始杜松子酒文档:https://github.com/gin-gonic/gin#serving-static-files

func main() {

    router := gin.Default()

    router.Static("/assets", "./assets")

    router.StaticFS("/more_static", http.Dir("my_file_system"))

    router.StaticFile("/favicon.ico", "./resources/favicon.ico")


    // Listen and serve on 0.0.0.0:8080

    router.Run(":8080")

}

因此基本上您应该在您定义的其他路由旁边定义一个特定于 JSON 文件的路由。然后使用它。


查看完整回答
反对 回复 2023-07-10
?
慕婉清6462132

TA贡献1804条经验 获得超2个赞

如果你想根据查询路径提供静态文件,你可以这样做:


func serve() {

    r := gin.Default()


    r.GET("/*path", func(c *gin.Context) {

        // read from file

        data, err := os.ReadFile("/path/to/file")

        if err != nil {

            // error handler

        }

        switch path.Ext(c.Request.URL.Path) {

        case ".html":

            c.Header("Content-Type", "text/html")

        case ".css":

            c.Header("Content-Type", "text/css")

        case ".js":

            c.Header("Content-Type", "application/javascript")

            // ...

        }

        _, _ = c.Writer.Write(data)

    })

    // Listen and serve on 0.0.0.0:8080

    panic(r.Run(":8080"))

}


查看完整回答
反对 回复 2023-07-10
  • 2 回答
  • 0 关注
  • 104 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信