如何在django中读取json数据?

时间:2015-02-02 18:00:31

标签: python json django

如何从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")

我只是返回请求的内容,因为它是检查我的工作

1 个答案:

答案 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")