PS
Size: a a a
PS
MS
PS
AZ
NN
NK
NK
NK
NK
PS
PS
function getBody(req) {
return new Promise(resolve => {
let body = "";
req.on("data", chunk => {
body += chunk;
});
req.on("end", () => {
resolve(body);
});
});
}
const body = await getBody(ctx.req);
NK
NK
倫岡
PS
const jsonParser = bodyParser.json()
NK
NK
d
const jsonParser = bodyParser.json()
NK