params
Params extracted either from the URL's query parameters OR from a dynamic route
For example:
/users/posts?user=123&post=11
Content copied to clipboard
and/or
/users/123/posts/11
# for a URL registered as "/users/{user}/posts/{post}"
Content copied to clipboard
will generate a mapping of "user" to 123 and "post" to 11.
If the same key is specified in both the query parameters and the dynamic route, the dynamic route will take precedence.