使用 Gin 路由器渲染静态文件非常简单。让我们深入研究如何提供将使用 JavaScript 在 HTML 页面中调用的 JSON 文件。
提供 JSON 文件
提供 web.json 文件,您需要在 Gin 路由器中定义静态文件路由。将以下代码添加到您的 main.go 文件中:
<code class="go">router.StaticFile(`/web.json`, `./templates/web.json`)</code>
这将确保对 /web.json 的任何 HTTP 请求都将传递位于 templates 目录中的 web.json 文件的内容。
自定义 HTML 文件
提供的 HTML 文件需要可在 /web.json 访问 JSON 文件。更新 HTML 文件中的 {{ .url }} 变量以指向正确的路径:
<code class="html"><script> window.onload = function() { // ... const ui = SwaggerUIBundle({ url: "/web.json", dom_id: '#swagger-ui', // ... }) // ... } </script></code>
运行应用程序
进行必要的调整,您可以使用 router.Run() 方法运行您的应用程序。访问该页面时,您不应再遇到“Not Found ./web.json”错误。
其他注意事项
以上是如何使用 Gin 路由器提供静态 JSON 文件?的详细内容。更多信息请关注PHP中文网其他相关文章!