swagger在node.js下的使用

 

下载(或复制)Swagger UI存储库。你会从dist文件夹需要以下文件:

swagger-ui.css 
swagger-ui-bundle.js 
swagger-ui-standalone-preset.js 

在你的网页的<head>部分,添加:

<link rel="stylesheet" type="text/css" href="swagger-ui.css"> 

<body>中,添加:

<div id="swagger-ui"></div> 

<script src="swagger-ui-bundle.js"></script> 
<script src="swagger-ui-standalone-preset.js"></script> 

<script> 
window.onload = function() { 
    const ui = SwaggerUIBundle({ 
    url: "https://yourserver.com/path/to/swagger.json", 
    dom_id: '#swagger-ui', 
    presets: [ 
     SwaggerUIBundle.presets.apis, 
     SwaggerUIStandalonePreset 
    ] 
    }) 

    window.ui = ui 
} 
</script> 

<div id="swagger-ui"></div>是Swagger UI将在其中呈现的DOM节点。 SwaggerUIBundle构造函数初始化Swagger UI。这是您指定您的规格URL和other parameters的地方。