目錄
- 返回多條數(shù)據(jù)
- 返回單個(gè)對象
和前端交互全部使用JSON,如何將數(shù)據(jù)庫查詢結(jié)果轉(zhuǎn)換成JSON格式
返回多條數(shù)據(jù)
示例
import json
from django.http import HttpResponse
from django.core import serializers
def db_to_json(request):
scripts = Scripts.objects.all()[0:1]
json_data = serializers.serialize('json', scripts)
return HttpResponse(json_data, content_type="application/json")
返回結(jié)果
[{
"fields": {
"script_content": "abc",
"script_type": "1"
},
"model": "home_application.scripts",
"pk": "03a0a7cf-567a-11e9-8566-9828a60543bb"
}]
功能實(shí)現(xiàn)了,但是我需要返回一個(gè)約定好的JSON格式,查詢結(jié)果放在 data 中
{"message": 'success', "code": '0', "data": []}
代碼如下:
import json
from django.http import HttpResponse
from django.core import serializers
def db_to_json2(request):
# 和前端約定的返回格式
result = {"message": 'success', "code": '0', "data": []}
scripts = Scripts.objects.all()[0:1]
# 序列化為 Python 對象
result["data"] = serializers.serialize('python', scripts)
# 轉(zhuǎn)換為 JSON 字符串并返回
return HttpResponse(json.dumps(result), content_type="application/json")
調(diào)用結(jié)果
{
"message": "success",
"code": "0",
"data": [{
"fields": {
"script_content": "abc",
"script_type": "1"
},
"model": "home_application.scripts",
"pk": "03a0a7cf-567a-11e9-8566-9828a60543bb"
}]
}
有點(diǎn)難受的是,每條數(shù)據(jù)對象包含 fields,model,pk三個(gè)對象,分別代表字段、模型、主鍵,我更想要一個(gè)只包含所有字段的字典對象。雖然也可以處理,但還是省點(diǎn)性能,交給前端解析吧。
返回單個(gè)對象
代碼:
from django.forms.models import model_to_dict
from django.http import HttpResponse
import json
def obj_json(request):
pk = request.GET.get('script_id')
script = Scripts.objects.get(pk=pk)
# 轉(zhuǎn)為字典類型
script = model_to_dict(script)
return HttpResponse(json.dumps(script), content_type="application/json")
返回JSON:
{
"script_id": "1534d8f0-59ad-11e9-a310-9828a60543bb",
"script_content": "3",
"script_name": "3",
"script_type": "1"
}
到此這篇關(guān)于Django 查詢數(shù)據(jù)庫返回JSON的實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)Django 返回JSON內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Django2.1.7 查詢數(shù)據(jù)返回json格式的實(shí)現(xiàn)
- Django+RestFramework API接口及接口文檔并返回json數(shù)據(jù)操作
- Django中使用Json返回?cái)?shù)據(jù)的實(shí)現(xiàn)方法
- django實(shí)現(xiàn)HttpResponse返回json數(shù)據(jù)為中文
- Django 返回json數(shù)據(jù)的實(shí)現(xiàn)示例
- Django返回json數(shù)據(jù)用法示例