问题描述
我的 api 不能在 swaager 上工作,我不知道如何在代码中发送请求中的参数 我正在使用的 swaggerUi 和 swagger-jsdoc 模块
我想在请求中发送参数我不知道怎么发送
const swaggerOptions = {
swaggerDeFinition: {
info: {
version: "1.0.0",title: "users API",description: "users API information",contact: {
name: "abc.co"
},servers: ["http://localhost:3000"]
}
},// ['.routes/*.js']
apis: ["app/route/auth.js"]
};
const swaggerDocs = swaggerJsDoc(swaggerOptions);
app.use('/api-docs',swaggerUi.serve,swaggerUi.setup(swaggerDocs));
// Routes
/**
* @swagger
* /api/signIn:
* post:
* description: Sign In
* parameters:
* - name: email
* in: query
* description: Email of our user
* schema:
* type: string
* format: string
* - name: password
* in: query
* description: Password of user
* schema:
* type: string
* format: string
* responses:
* '200':
* description: A successful response
*/
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)