fix: request 参数丢失问题

This commit is contained in:
bac-joker 2021-03-09 19:12:36 +08:00
parent 1838047624
commit cb69a05f29

View File

@ -3,9 +3,9 @@ import { checkHttpRequestHasBody, trimObj } from './helpers';
export default async (ctx, next) => {
const config = ctx.config;
if (checkHttpRequestHasBody(config.method)) {
config.data = trimObj(config.data);
trimObj(config.data);
} else {
config.params = trimObj(config.params);
trimObj(config.params);
}
await next();
};