feat(data-source): http数据源参数裁剪与响应裁剪支持异步函数配置

This commit is contained in:
roymondchen 2024-09-19 20:38:27 +08:00 committed by roymondchen
parent f6885a06b6
commit 5267b4bb93

View File

@ -137,7 +137,7 @@ export default class HttpDataSource extends DataSource<HttpDataSourceSchema> {
}
if (typeof this.schema.beforeRequest === 'function') {
reqOptions = this.schema.beforeRequest(reqOptions, { app: this.app, dataSource: this });
reqOptions = await this.schema.beforeRequest(reqOptions, { app: this.app, dataSource: this });
}
// 注意在编辑器中mockData不会为空至少是默认值不会发起请求
@ -148,7 +148,7 @@ export default class HttpDataSource extends DataSource<HttpDataSourceSchema> {
}
if (typeof this.schema.afterResponse === 'function') {
res = this.schema.afterResponse(res, { app: this.app, dataSource: this, options: reqOptions });
res = await this.schema.afterResponse(res, { app: this.app, dataSource: this, options: reqOptions });
}
if (this.schema.responseOptions?.dataPath) {