Please post example code when request.POST contain query string in django, because i think my django version is bugged.
EDIT:
You simple can’t, query string is always in GET, and this was my problem.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your request is post:
but the requested url contains a query string. e.g:
/your-url?param1=value-one
you can still take POST parameters through:
and query string parameters through:
althrough, you pick up all parameters at once (POST and GET), through REQUEST: