[新需求]接口的resBody的jsonSchema放到生成的文件中,业务代码里可以用来校验接口
Closed this issue · 7 comments
inceptiongt commented
业务代码中校验接口,抛出错误,方便调试及测试
fjc0k commented
可以作为可选配置开启,开启则生成请求数据和返回数据的 json schema。
inceptiongt commented
项目怎样调试啊,用vscode自带的调试功能可以吗
launch.json麻烦也传一下
fjc0k commented
这种比较深入的需求我来实现吧 😀 没有调试 我都是写完写个测试 没问题就发版
inceptiongt commented
那什么时候可以完成呢
inceptiongt commented
fjc0k commented
已支持,试试最新版,一个配置示例:
import { defineConfig } from 'yapi-to-typescript'
export default defineConfig({
serverUrl: 'https://petstore.swagger.io/v2/swagger.json',
serverType: 'swagger',
outputFilePath: 'api/index.ts',
jsonSchema: {
enabled: true,
},
projects: [
{
token: '',
categories: [
{
id: 0,
},
],
},
],
})
fjc0k commented