我正在尝试设置一个描述控制器的简单标题部分。阅读文档,我不知道如何将文件描述为一个整体,并给它一个类似标题的摘要,不引用特定的代码行
/** this should be a summary but not contain a reference to source code since it's just a summary
* @module serviceController
*/
/**
* GET /blah/:id/:target
*
*/
exports.one = function(req, res) {};
/**
* GET /fased/:id/:target
*
*/
exports.two = function(req, res) {};
/**
* GET /frsfds/:id/:target
*
*/
exports.three = function(req, res) {};
如何生成这样一个非常基本的标题部分?
@summary
和@description
似乎无效。