在 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中文網其他相關文章!