fix params
This commit is contained in:
parent
8374511aef
commit
08bc51b752
|
|
@ -18,6 +18,12 @@ const parseQueryParams = (ctx: any) => {
|
||||||
};
|
};
|
||||||
export const apiContext = (ctx: any) => {
|
export const apiContext = (ctx: any) => {
|
||||||
ctx.req.params = ctx.params;
|
ctx.req.params = ctx.params;
|
||||||
|
|
||||||
|
if (ctx.params["_0"]) {
|
||||||
|
ctx.params["_"] = ctx.params["_0"];
|
||||||
|
delete ctx.params["_0"];
|
||||||
|
}
|
||||||
|
|
||||||
ctx.req.query_parameters = parseQueryParams(ctx);
|
ctx.req.query_parameters = parseQueryParams(ctx);
|
||||||
return {
|
return {
|
||||||
req: ctx.req as Request & { params: any; query_parameters: any },
|
req: ctx.req as Request & { params: any; query_parameters: any },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue