Django中request.POST和request.raw_post_data的区别

区别:
request.POST返回的是QueryDict;
request.raw_post_data返回的是str(字符串)
注:django 1.3以后,“raw_post_data”已经更名为“body”,即request.body。
【例】:

print request.POST

print request.raw_post_data
user=test&password=123

你可能感兴趣的:(Django中request.POST和request.raw_post_data的区别)