本文實例講述了Django回傳json資料用法。分享給大家供大家參考,具體如下:
1、前端。 jQuery發送GET請求,並解析json資料。 getJSON方法可參考這裡。
url = "http://example/?question=" + question + "&rand=" + Math.random(); $.getJSON(url, function(json){ answer = json.answer; alert(answer); });
2、後端。 Django接收GET請求並傳回json資料。
from django.http import HttpResponse from django.utils import simplejson if request.method == 'GET' and 'question' in request.GET: question = request.GET['question'] print(question) data = {"answer": "answer"} #ensure_ascii=False用于处理中文 return HttpResponse(simplejson.dumps(data, ensure_ascii=False))
更多Django返回json資料用法範例相關文章請關注PHP中文網!
#