溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Django如何實(shí)現(xiàn)查詢數(shù)據(jù)庫返回JSON

發(fā)布時(shí)間:2021-08-09 13:46:21 來源:億速云 閱讀:141 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)Django如何實(shí)現(xiàn)查詢數(shù)據(jù)庫返回JSON的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

返回多條數(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 對(duì)象
    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ù)對(duì)象包含 fields,model,pk三個(gè)對(duì)象,分別代表字段、模型、主鍵,我更想要一個(gè)只包含所有字段的字典對(duì)象。雖然也可以處理,但還是省點(diǎn)性能,交給前端解析吧。

返回單個(gè)對(duì)象

代碼:

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í)現(xiàn)查詢數(shù)據(jù)庫返回JSON”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI