需求
每次接口定义完成之后都要手动声明Ts类型和请求函数
每次接口变更之后都得重复手动声明Ts类型和请求函数
于是就有了 @clean-js/api-gen
根据yapi,swagger2,swagger3自动生产请求函数和代码,释放生产力,让你有更多的时间摸鱼
install
npm install @clean-js/api-gen
功能
- 根据YAPI,swagger2,swagger3等api协议自动生成请求代码
- 声明完整的Typescript入参和出参类型
- YAPI会在注释中写入该接口的地址
方法命名规则为 method+url;如/user,method:post,生成的代码如下
/** Yapi link: https://yapi.onewo.com/project/2055/interface/api/125352 */ export function postUser(parameter: { body: PostUserBody }) { return Req.request<ResponsePostUser>({ url: '/user', method: 'post', data: parameter.body, }); }
config
interface
export interface Config {
url: string; // http或者文件绝对路径
outDir?: string; // 输出文件路径,默认为./clean-js
type?: "umi3" | "axios"; // 生成的代码类型,umi3是基于umi-request请求库, 默认为 axios
}
新建clean.config.ts
export default {
url: 'https://petstore3.swagger.io/api/v3/openapi.json', // swagger 3
url: 'https://petstore.swagger.io/v2/swagger.json', // swagger 2
url: 'http://yapi.smart-xwork.cn/api/open/plugin/export-full?type=json&pid=186904&status=all&token=59ecff7d43926c3be48f893deba401407f0d819c6c24a99b307a78c0877bc7d2' // yapi
}
YAPI
- 项目->设置->生成 ts services
- 复制remoteUrl地址
- 在clean.config.ts文件中填入url地址
- 运行npm run api-gen
Swagger
- 复制swagger json在线地址,或者本地文件绝对地址(相对地址)
- 在clean.config.ts文件中填入url地址
- 运行npm run api-gen
运行时
在代码运行时设置请求实例
import { Req } from '@/clean-js/http.service';
function initCleanJsApi() {
Req.set(request);
}
贴上源码 👉🏻 @clean-js/api-gen
期待宝子们的star⭐️,你的支持就是我最大的动力
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。