req.params
can only get the param of request url in this pattern:/user/:name
req.query
get query params(name) like /user?name=123
or body params.
req.params
can only get the param of request url in this pattern:/user/:name
req.query
get query params(name) like /user?name=123
or body params.