我有两个端点:
按 ID 获取所有用户
http.get(API_URL + "users/" + id)
通过用户名获取所有用户
http.get(API_URL + "users/" + username)
我可以在同一条路由上发送不同的参数吗:
router.get("/users/:id", async ctx => {
//ctx.request.param is id
//do something
});
router.get("/users/:username", async ctx => {
//ctx.request.param is username
//do something
});
谢谢你的帮助!