Midway v2.12.1 发布,新增 Axios 组件
Features
1、新增 Axios 组件
提供一个 axios 组件,用于发送 http 请求。
接口保持和 axios 一致,处理了作用域相关的问题。
使用示例:
import { HttpService } from '@midwayjs/axios';
@Provide()
export class UserService {
@Inject()
httpService: HttpService;
async invoke() {
const url = 'https://api.github.com/users/octocat/orgs';
const result = await this.httpService.get(url);
// TODO resut
}
}
具体请查看 axios 文档。
Bugfix
1、处理默认 listen hostname 可能引起 502 的问题
具体见 issue#1195
新版本将参数分开,恢复了默认行为。
2、bootstrap 新增 preloadModules 透传
preloadModules 启动参数是用于 ncc 构建的预留,之前未透传,在一些极端情况下需要使用,比如 issue#1193。
新版本增加了启动参数的透传。