การสร้างการตอบสนอง JSON โดยใช้ Django และ Python


452

ฉันพยายามแปลงสคริปต์ตอบกลับ Ajax ฝั่งเซิร์ฟเวอร์เป็น Django HttpResponse แต่ดูเหมือนจะไม่ทำงาน

นี่คือสคริปต์ฝั่งเซิร์ฟเวอร์:

/* RECEIVE VALUE */
$validateValue=$_POST['validateValue'];
$validateId=$_POST['validateId'];
$validateError=$_POST['validateError'];

/* RETURN VALUE */
$arrayToJs = array();
$arrayToJs[0] = $validateId;
$arrayToJs[1] = $validateError;

if($validateValue =="Testuser"){  // Validate??
    $arrayToJs[2] = "true";       // RETURN TRUE
    echo '{"jsonValidateReturn":'.json_encode($arrayToJs).'}';  // RETURN ARRAY WITH success
}
else{
    for($x=0;$x<1000000;$x++){
        if($x == 990000){
            $arrayToJs[2] = "false";
            echo '{"jsonValidateReturn":'.json_encode($arrayToJs).'}';   // RETURNS ARRAY WITH ERROR.
        }
    }
}

และนี่คือรหัสที่แปลงแล้ว

def validate_user(request):
    if request.method == 'POST':
        vld_value = request.POST.get('validateValue')
        vld_id = request.POST.get('validateId')
        vld_error = request.POST.get('validateError')

        array_to_js = [vld_id, vld_error, False]

        if vld_value == "TestUser":
            array_to_js[2] = True
            x = simplejson.dumps(array_to_js)
            return HttpResponse(x)
        else:
            array_to_js[2] = False
            x = simplejson.dumps(array_to_js)
            error = 'Error'
            return render_to_response('index.html',{'error':error},context_instance=RequestContext(request))
    return render_to_response('index.html',context_instance=RequestContext(request))

ฉันใช้ simplejson เพื่อเข้ารหัสรายการ Python (ดังนั้นมันจะส่งคืนอาร์เรย์ JSON) ฉันยังไม่เข้าใจปัญหา แต่ฉันคิดว่าฉันทำอะไรผิดเกี่ยวกับ 'เสียงสะท้อน'


นอกจากนี้คุณยังสามารถใช้ Django @ajax_requestน่ารำคาญมุมมองมัณฑนากร
zopieux

คำตอบ:


917

ฉันมักจะใช้พจนานุกรมไม่ใช่รายการเพื่อส่งคืนเนื้อหา JSON

import json

from django.http import HttpResponse

response_data = {}
response_data['result'] = 'error'
response_data['message'] = 'Some error message'

Pre-Django 1.7 คุณจะได้กลับมาเช่นนี้:

return HttpResponse(json.dumps(response_data), content_type="application/json")

สำหรับ Django 1.7+ ให้ใช้JsonResponseตามที่แสดงในคำตอบ SOดังนี้:

from django.http import JsonResponse
return JsonResponse({'foo':'bar'})

4
มันเป็นประเภทไม่ใช่รายการที่ควรจะทำให้เขามีปัญหา แม้ว่าโดยทั่วไปแล้ว JSON จะเป็นวัตถุ ("พจนานุกรม") ที่ระดับบนสุด แต่ JSON ก็มีความสุขอย่างสมบูรณ์แบบด้วยอาร์เรย์ที่ระดับบนสุด
Thanatos

6
ขออภัยมันไม่ชัดเจนจากสิ่งที่ฉันเขียน แต่ฉันหมายถึงฉันใช้พจนานุกรมเพียงเพราะมันสะอาดกว่า / ง่ายกว่าเมื่อทำการจัดลำดับเป็น JSON
Tom

'application / json' ไม่รองรับ IE เวอร์ชันเก่าอย่างถูกต้อง นี่คือการอภิปรายบางส่วนของปัญหาgithub.com/blueimp/jQuery-File-Upload/issues/123
ชัยชนะ

161

ใหม่ใน django 1.7

คุณสามารถใช้วัตถุJsonResponse

จากเอกสาร:

from django.http import JsonResponse
return JsonResponse({'foo':'bar'})

2
ข้อเสียอย่างหนึ่ง: มันเป็นค่าเริ่มต้นensure_asciiและฉันยังไม่พบวิธีที่จะแทนที่มัน สร้างคำถามใหม่สำหรับสิ่งนี้: stackoverflow.com/q/34798703/854477
int_ua

@int_ua: เพียงแค่เพิ่มjson_dumps_params={"ensure_ascii": False}(ต้องการ Django 1.9 หรือใหม่กว่า)
Martijn Pieters

139

ฉันใช้สิ่งนี้มันทำงานได้ดี

from django.utils import simplejson
from django.http import HttpResponse

def some_view(request):
    to_json = {
        "key1": "value1",
        "key2": "value2"
    }
    return HttpResponse(simplejson.dumps(to_json), mimetype='application/json')

ทางเลือก:

from django.utils import simplejson

class JsonResponse(HttpResponse):
    """
        JSON response
    """
    def __init__(self, content, mimetype='application/json', status=None, content_type=None):
        super(JsonResponse, self).__init__(
            content=simplejson.dumps(content),
            mimetype=mimetype,
            status=status,
            content_type=content_type,
        )

ในวัตถุDjango 1.7 JsonResponseได้รับการเพิ่มเข้าไปในกรอบงาน Django ซึ่งทำให้งานนี้ง่ายยิ่งขึ้น:

from django.http import JsonResponse
def some_view(request):
    return JsonResponse({"key": "value"})

1
ปัญหาอยู่ที่นี่มันไม่ได้รับค่าจากช่องใส่ vld_value = request.POST.get ('validateValue')
Switch

2
ด้วย python 2.7 มันควรเป็น "import json"
Cullen Fluffy Jennings

1
ฉันคิดว่าfrom django.utils import simplejsonมีไว้สำหรับความเข้ากันได้
Skylar Saveland

JsonResponse(status=404, data={'status':'false','message':message})
Belter

25

ตั้งแต่ Django 1.7 คุณมีJsonResponseมาตรฐานนั่นคือสิ่งที่คุณต้องการ:

from django.http import JsonResponse
...
return JsonResponse(array_to_js, safe=False)

คุณไม่จำเป็นต้อง json.dump อาเรย์ของคุณด้วยซ้ำ


16
from django.http import HttpResponse
import json

class JsonResponse(HttpResponse):
    def __init__(self, content={}, mimetype=None, status=None,
             content_type='application/json'):
        super(JsonResponse, self).__init__(json.dumps(content), mimetype=mimetype,
                                           status=status, content_type=content_type)

และในมุมมอง:

resp_data = {'my_key': 'my value',}
return JsonResponse(resp_data)


11

คุณจะต้องการใช้ django serializer เพื่อช่วยในเรื่อง unicode:

from django.core import serializers

json_serializer = serializers.get_serializer("json")()
    response =  json_serializer.serialize(list, ensure_ascii=False, indent=2, use_natural_keys=True)
    return HttpResponse(response, mimetype="application/json")

2
นี้เป็นรุ่นที่ต้องการของฉัน แต่รู้ว่ามันกินเพียง querysets
patroqueeet

10

ด้วย Django Class-views คุณสามารถเขียน:

from django.views import View
from django.http import JsonResponse

class JsonView(View):
    def get(self, request):
        return JsonResponse({'some': 'data'})

และด้วย Django-Rest-Framework คุณสามารถเขียน:

from rest_framework.views import APIView
from rest_framework.response import Response

class JsonView(APIView):
    def get(self, request):
        return Response({'some': 'data'})

6

สะดวกมากกับ Django เวอร์ชั่น 1.7 ขึ้นไปเนื่องจากคุณมีคลาส JsonResponse ซึ่งเป็นคลาสย่อยของ HttpResponse

from django.http import JsonResponse
    def profile(request):
        data = {
            'name': 'Raghav',
            'location': 'India',
            'is_active': False,
            'count': 28
        }
        return JsonResponse(data)

สำหรับ Django เวอร์ชันเก่าคุณต้องใช้วัตถุ HttpResponse

import json
from django.http import HttpResponse

def profile(request):
    data = {
        'name': 'Raghav',
        'location': 'India',
        'is_active': False,
        'count': 28
    }
    dump = json.dumps(data)
    return HttpResponse(dump, content_type='application/json')

6

วิธีการใช้แอพ google engine กับ ajax (json)

รหัส Javascript กับ JQuery:

$.ajax({
    url: '/ajax',
    dataType : 'json',
    cache: false,
    success: function(data) {
        alert('Load was performed.'+data.ajax_resp);
    }
});

รหัส ธ

class Ajax(webapp2.RequestHandler):
    def get(self):
        my_response = {'ajax_resp':'Hello, webapp World!'}
        datos = json.dumps(my_response)

        self.response.headers.add_header('content-type', 'application/json', charset='utf-8')
        self.response.out.write(datos)

4

นี่คือรุ่นที่ฉันต้องการโดยใช้มุมมองตามระดับ เพียงคลาสย่อยของมุมมองพื้นฐานและแทนที่เมธอด get () -

import json

class MyJsonView(View):

    def get(self, *args, **kwargs):
        resp = {'my_key': 'my value',}
        return HttpResponse(json.dumps(resp), mimetype="application/json" )

4

รหัส Django views.py:

def view(request):
    if request.method == 'POST':
        print request.body
        data = request.body
        return HttpResponse(json.dumps(data))

รหัส HTML view.html:

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("#mySelect").change(function(){
        selected = $("#mySelect option:selected").text()
        $.ajax({
            type: 'POST',
            dataType: 'json',
            contentType: 'application/json; charset=utf-8',
            url: '/view/',
            data: {
                    'fruit': selected
                  },
            success: function(result) {
                        document.write(result)
                    }
    });
  });
});
</script>
</head>
<body>

<form>
    {{data}}
    <br>
Select your favorite fruit:
<select id="mySelect">
  <option value="apple" selected >Select fruit</option>
  <option value="apple">Apple</option>
  <option value="orange">Orange</option>
  <option value="pineapple">Pineapple</option>
  <option value="banana">Banana</option>
</select>
</form>
</body>
</html>

4

ก่อนนำเข้าสิ่งนี้:

from django.http import HttpResponse

หากคุณมี JSON แล้ว:

def your_method(request):
    your_json = [{'key1': value, 'key2': value}]
    return HttpResponse(your_json, 'application/json')

หากคุณได้รับ JSON จากคำขอ HTTP อื่น:

def your_method(request):
    response = request.get('https://www.example.com/get/json')
    return HttpResponse(response, 'application/json')


1

ในมุมมองใช้สิ่งนี้:

form.field.errors|striptags

สำหรับการรับข้อความตรวจสอบโดยไม่มี html

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.