我在我的后端使用swagger api文档工具,我需要在调用url时在浏览器中查看.yaml文件的内容。但相反,我总是最终下载文件。
这是我的SwaggerUI标记的内容:
<script>
window.onload = function() {
// Build a system
const ui = SwaggerUIBundle({
url: "./app.yaml",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
})
window.ui = ui
}
</script>