接值
get 方式 ?后面拼参的 在egg的controller 里 this.ctx.query
例如 /a/b?c=123 this.ctx.query.c 就是123
post方式 在egg的controller里 this.ctx.request.body
例如 post方式{a:123} this.ctx.request.body.a 就是123
url上接参数 在egg的路由上用: controller里用 ctx.params
例如 /a/b/123 egg的路由 /a/b/:c 然后在controller里 const {ctx} =this ctx.params.c 就是123