Suppose you have a url
localhost:3000?a=1
and in the request, you also have a post parameter
a=2
What wou
It would be 2. But for routing, it would match against the '1'.
If you want, you can use request.GET and request.POST to access the get and post vars.