2021-03-09 19:12:36 +08:00

12 lines
284 B
JavaScript

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