apidoct接口文档参数提交格式问题
发布网友
发布时间:2022-04-26 06:17
我来回答
共1个回答
热心网友
时间:2022-06-24 14:53
方法一 每次请求: @apiHeader {string} Content-Type 请求数据格式
在接口文档的注释中加入,这样在填写表单时会多一个Content-Type
Content-Type 值填写application/json
方法二 全局:找到apidoc模版send_sample_request.js
一般在C:\Users\电脑用户名\AppData\Roaming\npm\node_moles\apidoc\template\utils
将ajax form表单的提交请求中加入三条
dataType: "json",
contentType: "application/json",
data: JSON.stringify(param),