JsonResponse 是 HttpResponse 的子類,與父類的區別在於:html
Content-Type
類型爲 application/json
application/text
class JsonResponse(HttpResponse): def __init__(self, data, encoder=DjangoJSONEncoder, safe=True, json_dumps_params=None, **kwargs):
HttpResponse前端
HttpResponse 每次將數據返回給前端須要用 json
模塊序列化,且前端也要反序列化:python
# views.py import json def index(request): message = '請求成功' # ret = {'message': '請求成功'} return HttpResponse(json.dumps(message)) # 序列化 # index.html $.ajax({ url: '/accounts/ajax/', type: 'post', data: { 'p': 123, csrfmiddlewaretoken: '{{ csrf_token }}' }, # 反序列化,或使用 json.parse(arg) dataType: "JSON", success: function (arg) { console.log(arg.message); } })
JsonResponseajax
JsonResponse 只能序列化字典格式,不能序列化字符串,且前端不用反序列化:django
from django.http import JsonResponse def index(request): ret = {'message': '請求成功'} return JsonResponse(ret) # 序列化 # index.html $.ajax({ url: '/accounts/ajax/', type: 'post', data: { 'p': 123, csrfmiddlewaretoken: '{{ csrf_token }}' }, # 不須要反序列化 # dataType: "JSON", success: function (arg) { console.log(arg.message); # 請求成功 } })
總結json