您好,登錄后才能下訂單哦!
Django中g(shù)et和filter方法有什么區(qū)別,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
get 是獲取一個對象,有時會出現(xiàn) DoesNotExist: User matching query does not exist 的情況。
我遇到的一種原因是:get 沒獲取到內(nèi)容,因為數(shù)據(jù)庫里 User 這張表沒數(shù)據(jù)。
解決方法:在 User 表中填完相關(guān)數(shù)據(jù),再使用如下代碼。
# solution one: get profile_mail = User.objects.get(uid=uid) print(profile_mail) if not profile_mail: return False print(profile_mail.mail) return JsonResponse(profile_mail.mail, safe=False)
profile_mail 獲取到的是一個對象 Object,要想獲取 mail 還需使用 .mail。
輸出的內(nèi)容如下:
User object (11) 123@qq.com
這里還遇到一個錯:In order to allow non-dict objects to be serialized set the safe parameter to False。
因為返回是 Json 數(shù)據(jù),需要序列化,因此 return JsonResponse(profile_mail.mail, safe=False) 里要加一個 safe=False。
get 返回的是一個對象,只能返回一個,如果記錄不存在的話,它會報錯。
當面對有多個對象的時候,就不能用 get 了,而應(yīng)該用 filter。
解決方法:
# solution two: post profile_mail = User.objects.filter(uid=uid) print(profile_mail) for i in profile_mail: print(i.mail) return JsonResponse(i.mail, safe=False)
得到的內(nèi)容,filter 返回的是一個對象列表,如果記錄不存在的話,它會返回 []。
輸出的內(nèi)容如下:
<QuerySet [<User: User object (11)>]> 123@qq.com
返回一個 ValuesQuerySet(QuerySet 的一個子類),迭代時返回的是字典,表示一個對象,但不是模型實例對象。
profile_mail = User.objects.filter(uid=uid) print(profile_mail) profile_mail = User.objects.filter(uid=uid).values() print(profile_mail)
輸出的內(nèi)容如下:
<QuerySet [<User: User object (11)>]> <QuerySet [{'uid': 11, 'user_name': 'asdsa222', 'user_image': '', 'password': 'e10adc3949ba59abbe56e057f20f883e', 'mail': '123@qq.com', 'authority': 0}]>
values() 接收可選的位置參數(shù) *fields,它指定 SELECT 應(yīng)該限制哪些字段。比如下面篩選 mail 信息:
profile_mail = User.objects.filter(uid=uid).values('mail') print(profile_mail)
輸出的內(nèi)容如下:
<QuerySet [{'mail': '123@qq.com'}]>
返回的是元組而不是字典。每個元組包含傳遞給 values_list() 調(diào)用的字段的值,所以第一個元素為第一個字段,以此類推。
profile_mail = User.objects.filter(uid=uid).values_list('uid','mail') print(profile_mail)
輸出的內(nèi)容如下:
<QuerySet [(11, '123@qq.com')]>
如果只傳遞一個字段,你還可以傳遞 flat 參數(shù)。如果為 True,它表示返回的結(jié)果為單個值而不是元組。
profile_mail = User.objects.filter(uid=uid).values_list('mail', flat=True) print(profile_mail)
輸出的內(nèi)容如下:
<QuerySet ['123@qq.com']>
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。