0

超级简单,但是当我标记我的文档以生成 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. 那是什么标记?

4

1 回答 1

1

找到了。原来你只是删除了变量周围的 [] 括号

 * @apiParam {String} required_variable comma delimited list of any or all of: contests, deals, coupons
于 2017-11-17T21:10:30.230 回答