使用swagger-jsdoc记录Express API的确切步骤是什么?

时间:2019-04-08 08:18:51

标签: javascript node.js api express swagger

我想使用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();

  }
}

0 个答案:

没有答案