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

020*_*402 4 static json go server go-gin

我想用 gin 服务器提供一个 JSON 文件。并在 HTML 文件中设置一些自定义值。在其中使用 JavaScript 调用 JSON 文件。

我的应用程序结构:

.
??? main.go
??? templates
    ??? index.html
    ??? web.json
Run Code Online (Sandbox Code Playgroud)

我将这些基本源代码放入main.go文件中:

package main

import (
    "net/http"

    "github.com/gin-gonic/gin"
)

var router *gin.Engine

func 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()
}
Run Code Online (Sandbox Code Playgroud)

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>
Run Code Online (Sandbox Code Playgroud)

运行应用程序时,我收到一个获取错误:

未找到 ./web.json

那么我应该如何web.json在 Gin 内部服务器中提供要访问的文件呢?

Sea*_*ays 8

引用原始 gin 文档: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")
}
Run Code Online (Sandbox Code Playgroud)

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