How to use the wseid function from koa-body
Find comprehensive JavaScript koa-body.wseid code examples handpicked from public code repositorys.
GitHub: GATING/ninja
133 134 135 136 137 138 139 140 141 142 143
ctx.body = { data }; }); router.post("/api/WSCKDelaccount", body(), async (ctx) => { const body = ctx.request.body; const wseid = body.wseid; const user = new User({ wseid }); const data = await user.delWSCKUserByEid(); ctx.body = { data }; });
3
4
0
+ 3 other calls in file
koa-body.eid is the most popular function in koa-body (111 examples)