2020-12-30 14:25:14 +08:00

12 lines
314 B
JavaScript

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