KOA エンドポイントがあります。数値のみを受け入れるパラメーターがあります。これをquantify
KOA ルーターで直接強制するにはどうすればよいですか?
.put('/cart/:product/:quantity', async ctx => {
quantity = ctx.params.quantity;
ctx.body = 'my code here';
}
KOA エンドポイントがあります。数値のみを受け入れるパラメーターがあります。これをquantify
KOA ルーターで直接強制するにはどうすればよいですか?
.put('/cart/:product/:quantity', async ctx => {
quantity = ctx.params.quantity;
ctx.body = 'my code here';
}