客户端代码:
def http_post(values):
json_data = json.dumps(values)
try:
req = urllib2.Request(post_server,json_data) #生成页面请求的完整数据
response = urllib2.urlopen(req) # 发送页面请求
except urllib2.HTTPError,error:
print "ERROR: ",error.read()
Django端代码:
def recv_data(request):
if request.method == 'POST':
received_json_data = json.loads(request.body)
return received_json_data
else:
print 'abc'
程序运行后,client端总是报错:
You're seeing this error because you have DEBUG = True
in your
Django settings file. Change that to False
, and Django will
display a standard 500 page.
请问是什么原因啊?!
500
是django
程序执行的时候错误。目测你POST的数据不是标准的
json字符串
,loads
的时候报错你可以打印一下
request.body
设置
Debug=True
可以看到更详细的报错信息。