は、私は2つのエンドポイントがあります。Koa2同じルート異なるのparamsに
を
http.get(API_URL + "users/" + id)
は、ユーザー名
http.get(API_URL + "users/" + username)
ですべてのユーザーが、私は異なるパラメータを送ることができますGET IDですべてのユーザーをGET同じルート上:
router.get("https://stackoverflow.com/users/:id", async ctx => {
//ctx.request.param is id
//do something
});
router.get("https://stackoverflow.com/users/:username", async ctx => {
//ctx.request.param is username
//do something
});
ありがとうございました!