- 修复数字枚举
- 增加
axios
自定义实例的支持 (issue 6 with kt81) - 增加第三方类
axios
库的支持,如 Fly.js ,需要设置useCustomerRequestInstance = true
- 增加
serviceNameSuffix
配置,以支持�自定义服务的后缀 useStaticMethod = true
现在为默认配置- 优化整体的代码实现和代码逻辑
- 修复 issue 2 issue 3
- 配置(如
tsconfig.json
、npm script
)请参考 example
- 更新example,增加使用operationId作为方法名字的例子
- 修复使用Typescript3.0.0,在请求方法中的
let data = null;
的定义会报异常 (b0dad90 by kt81)
- 修复: 枚举名字大小写转换的问题
- 修复:使用 FormData 提交 非 file 类型的参数的bug
- 优化:当实体的属性为枚举数组时,优化他的生成规则 , example
- 修复:当tags为空时,跳过生成当前方法
- 调整生成的class name的名称
- 使用
Promise
代替AxiosPromise
。如果接口调用成功,默认返回response.data - 修改README.md