I have a certain link to a url in a Django template. I would like to grab all the GET parameters of the current page url and add them to the url of the template's link. The current page might have zero GET parameters.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Include the
This will cause links from a page without any GET variables to have a trailing
|
||||
|
|
|
you could pass You can grab the get params before you render the template and pass them to the template and render them on the correct link. You could also build a query string from |
||||
|
|
|
The GET parameters of the current request are stored in HTTPRequest.Get. |
|||
|
|
