简体   繁体   中英

POST request from iPhone to Django

I'm trying to send a POST request from iPhone to Django, but for some reason I can't. The request is sent, but the server doesn't receive it properly.

  1. What is the regular expression that accepts POST? In my case, I use this one: /messages/a/s=person1&r=person2&c=hello/ .
  2. How do I retrieve the POST arguments in the Django view? request.POST['s'] should work?

Thanks.

POST parameters are not part of the URL, so your regex should simply detail the main part of the url you want to receive it on. To take your example, change it to /messages/a/ . Then, in your "messages" app, have a view/function called a : that one will be reached on receiving any POST (or GET, which you're currently (almost) depicting in your url) to that location.

The arguments can then indeed be retrieved using request.POST['keyname'] . To make things more convenient, supply a default value when getting the data so you need less error checking: request.POST.get('keyname', None) . This will get the value of keyname when available, or None otherwise.

The posting itself... depends on more code then you're currently showing. Can't say anything about that with your current question.

That URL you've pasted in will pass the data through the request.GET dictionary. If you want to change your iPhone app to POST data, you'll have to share your code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM