如何使 apidoc.json 参数成为必填项?
How to make apidoc.json parameters required?
超级简单,但是当我标记我的文档以生成 api-doc(使用包裹@:http://apidocjs.com)
// My APIDOC markup in my PHP doc
* @apiParam {String} [type] comma delimited list of any or all of: contests, deals, coupons
... 生成以下 html:
我希望如图所示的 optional
变为 required
。那是什么标记?
找到了。结果你只是删除了变量
周围的 [] 括号
* @apiParam {String} required_variable comma delimited list of any or all of: contests, deals, coupons
超级简单,但是当我标记我的文档以生成 api-doc(使用包裹@:http://apidocjs.com)
// My APIDOC markup in my PHP doc
* @apiParam {String} [type] comma delimited list of any or all of: contests, deals, coupons
... 生成以下 html:
我希望如图所示的 optional
变为 required
。那是什么标记?
找到了。结果你只是删除了变量
周围的 [] 括号 * @apiParam {String} required_variable comma delimited list of any or all of: contests, deals, coupons