首頁 >後端開發 >Golang >如何在 Gin 路由器中提供靜態檔案?

如何在 Gin 路由器中提供靜態檔案?

Susan Sarandon
Susan Sarandon原創
2024-11-03 14:22:30614瀏覽

How to Serve a Static File in Gin Router?

在 Gin 路由器中提供靜態檔案

在 Gin 路由器中提供靜態檔案涉及使用 Static、StaticFS、StaticFile 和 StaticFileFS 方法。這些方法可讓您定義為特定靜態檔案或目錄提供服務的路由。

在您的情況下,您希望提供 web.json 檔案。為此,您需要定義指向檔案位置的路由。將以下路由新增至 main.go 檔案:

<code class="go">router.StaticFile("/web.json", "./templates/web.json")</code>

此路由將使 web.json 檔案在 /web.json 路徑中可用。現在您可以使用提供的 URL 在 index.html 檔案中引用此文件:

<code class="html"><script>
  const ui = SwaggerUIBundle({
    url: "{{ .url }}",
    dom_id: '#swagger-ui',
    // ...
  })
  window.ui = ui
</script></code>

以上是如何在 Gin 路由器中提供靜態檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn