Right now I have a very long URL for my results which is basically a long list of parameters. I navigate to the results by press of a button and (JavaScript):
window.location.href = ... URL with parameters here ...;
Catching them like this (views.py):
def Results(request,parameter1,...,parameterN)
How do I send these same parameters not inside the URL and how do I catch them in views?
EDIT:
To clarify, in a an optimal world I'd like to send the parameters hidden from the user and search engine crawlers so that the user/crawler sees only the URL:
www.example.com/results
And I do something like:
def Results(request):
parameter1 = ???
parameter2 = ???
...
parameterN = ???