第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

為什么我仍然得到“DeferredAttribute”對象沒有屬性“對象”?

為什么我仍然得到“DeferredAttribute”對象沒有屬性“對象”?

aluckdog 2023-06-13 14:58:03
經(jīng)過幾天的尋找,我仍然無法跨過這個障礙。我只是想打印一份來自賣家的描述列表作為視圖。這就是我正在使用的...models.py:from django.db import modelsclass Sellers(models.Model):    index = models.BigIntegerField(blank=True, null=False)    seller = models.TextField(db_column='SELLER', blank=False, null=False,                          primary_key=True)    block = models.TextField(db_column='BLOCK', blank=False, null=False)      street = models.TextField(db_column='STREET', blank=False, null=False)      space = models.TextField(db_column='SPACE', blank=False, null=False)     description = models.TextField(db_column='DESCRIPTION', blank=True, null=True)    document_with_idx = models.TextField(blank=False, null=False)     document_with_weights = models.TextField(blank=False, null=False)class Meta:    managed = False    db_table = 'Sellers'def __str__(self):    return self.index'''views.py:from django.http import HttpResponsefrom search.models import Sellersdef search(request):    output = Sellers.description.objects.all()    return HttpResponse(output)'''任何方向?qū)⒉粍俑屑?,我覺得我已經(jīng)閱讀了與此相關(guān)的所有相關(guān)帖子。我想是時候用我的確切設(shè)置發(fā)布問題了。謝謝!
查看完整描述

1 回答

?
MYYA

TA貢獻1868條經(jīng)驗 獲得超4個贊

Sellers.description指的是字段,所以你基本上得到的是對象,而不是對象中的TextField一個,因為它是一個類,而不是一個對象。您可以通過以下方式獲取值:descriptionsSellersSellersdescription


from django.http import JsonResponse

from search.models import Sellers


def search(request):

    output = Sellers.objects.values_list('description', flat=True)

    return JsonResponse({'data': list(output)})

此外,您不能簡單地將其包裝在 a 中HttpResponse,因為它需要一個類似字符串/字節(jié)的對象。例如,您可以使用 JSON 對其進行編碼JsonResponse。


查看完整回答
反對 回復(fù) 2023-06-13
  • 1 回答
  • 0 關(guān)注
  • 161 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號