I need to get the query string from this URL https://stackoverflow.com/questions/ask?next=1&value=3 and I don't want to use request.META. I have figured out that there are two more ways to get the query string:
Using urlparse urlparse.urlparse(url).query
Using url encode Use urlencode and pass the request.GET params dictionary into it to get the string representation.
So which way is better? My colleagues prefer urlencode but have not provided a satisfying explanation. They claim that urlparse calls urlencode internally which is something I'm not sure about since urlencode lives in the urllib module.
There is no guarantee that 'data' will be the next field in the query string after 'code'. Probably best to just read up to the '&'. Unless the 'code' is the last field in the query string, then read up to '$'. Or just use urlparse.
To retrieve the query string value, use Request object's QueryString property.
To send parameters in URL, write all parameter key:value pairs to a dictionary and send them as params argument to any of the GET, POST, PUT, HEAD, DELETE or OPTIONS request. then https://somewebsite.com/?param1=value1¶m2=value2 would be our final url.
You can make Query string using GET parameters like this
request.GET.urlencode()
This does not include the ?
prefix, and it may not return the keys in the same order as in the original request.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With