如何从android表单(通过get方法)发送到django python服务器的JSON对象中读取数据?
我试过这个
def post_article(sample): #sample is the http request
json = sample.read()
data = json.loads(json)
a = data['title']
response_data = {}
response_data['title'] = a
return HttpResponse(json.dumps(response_data), content_type="application/json")
我只是返回请求的内容,因为它是检查我的工作
答案 0 :(得分:2)
您使用相同的名称将json
模块与局部变量相混淆,请尝试使用其他变量名称。
def post_article(sample): #sample is the http request
json_data = sample.read()
data = json.loads(json_data)
a = data['title']
response_data = {}
response_data['title'] = a
return HttpResponse(json.dumps(response_data), content_type="application/json")