この記事の例では、JSON データを返す Django の使用法について説明します。参考のために皆さんと共有してください。詳細は次のとおりです。
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 return json データの使用例関連記事の詳細については、PHP 中国語 Web サイトに注目してください。