I am currently defining regular expressions in order to capture parameters in a URL, as described in the tutorial. How do I access parameters from the URL as part the HttpRequest
object?
My HttpRequest.GET
currently returns an empty QueryDict
object.
I'd like to learn how to do this without a library, so I can get to know Django better.
Question&Answers:os