在生成的文档中为示例请求设置默认 header 值
Set default header value for sample requests in generated documentation
我正在尝试为我的 api 文档设置示例请求。它工作正常,但我需要为每个请求
设置很多 header 值
有没有办法定义 header 的默认值,将随每个示例请求一起发送?
我尝试为 header 设置默认值,例如:
/**
* @apiHeader {String} Authorization=someToken
* @apiHeader {String} Content-Type=application/json
*/
此外,我正在考虑在生成的 html 中包含自定义 js 以填充这些字段(我不确定是否可行),但我希望有一个更简单的解决方案。
apidoc/apidoc 的所有者写道 here:
You can set default values. But the send sample request module did not
use the default value at the moment (you can modify the template for
this).
我正在尝试为我的 api 文档设置示例请求。它工作正常,但我需要为每个请求
设置很多 header 值我尝试为 header 设置默认值,例如:
/**
* @apiHeader {String} Authorization=someToken
* @apiHeader {String} Content-Type=application/json
*/
此外,我正在考虑在生成的 html 中包含自定义 js 以填充这些字段(我不确定是否可行),但我希望有一个更简单的解决方案。
apidoc/apidoc 的所有者写道 here:
You can set default values. But the send sample request module did not use the default value at the moment (you can modify the template for this).