我想使用NPM的swagger-jsdoc记录我的快速路由器端点。 我从不动摇用户,我想知道在代码中编写代码的确切步骤,以及最终如何生成YAML / JSON文档文件。
router.post('/docToSafe', (req, res, next) => {
let SafeProperties = req.body.SafeProperties;
let DocumentsArray = req.body.Documents;
if ((SafeProperties.PathToSafe) && (SafeProperties.ZipName) && (DocumentsArray[0].DocID)) {
res.writeHead(200, { 'content-type': 'text/plain' });
res.end();
}
else {
res.writeHead(500, { 'content-type': 'text/plain' });
res.end();
}
}