Django中ORM找出內(nèi)容不為空的數(shù)據(jù)實(shí)例
在django操作數(shù)據(jù)庫(kù)的時(shí)候如何找出內(nèi)容不為空的數(shù)據(jù)呢?
from django.db.models import Q class Index(VIew): def get(self, request): userObj = models.Asset.objects.filter(~Q(asset_id = ’’) return HttpResponse(’yes’)
上面代碼中的models.Asset.objects.filter(~Q(nick = ’’)則是使用Q函數(shù)去找出nick不為空的數(shù)據(jù),主要使用~Q
補(bǔ)充知識(shí):Django報(bào)錯(cuò) HINT: Add or change a related_name argument to the definition for ’GodownentryReturn.suppl
Unhandled exception in thread started by <function wrapper at 0x05569030>Traceback (most recent call last):File “G:workspacepycharmcarwincarwin_envlibsite-packagesdjangoutilsautoreload.py”, line 226, in wrapperfn(*args, **kwargs)File “G:workspacepycharmcarwincarwin_envlibsite-packagesdjangocoremanagementcommandsrunserver.py”, line 116, in inner_runself.check(display_num_errors=True)File “G:workspacepycharmcarwincarwin_envlibsite-packagesdjangocoremanagementbase.py”, line 472, in checkraise SystemCheckError(msg)django.core.management.base.SystemCheckError: SystemCheckError: System check identified some issues:
ERRORS:
article.GodownentryReturn.supplier: (fields.E304) Reverse accessor for ‘GodownentryReturn.supplier’ clashes with reverse accessor for ‘GodownentryReturn.supplier’.
HINT: Add or change a related_name argument to the definition for ‘GodownentryReturn.supplier’ or ‘GodownentryReturn.supplier’.
part.GodownentryReturn.supplier: (fields.E304) Reverse accessor for ‘GodownentryReturn.supplier’ clashes with reverse accessor for ‘GodownentryReturn.supplier’.
HINT: Add or change a related_name argument to the definition for ‘GodownentryReturn.supplier’ or ‘GodownentryReturn.supplier’.
原因:
因?yàn)樵谝粋€(gè)表中多次引用某個(gè)外鍵表,而且沒(méi)有指定唯一的releated_name,而導(dǎo)致的。
解決方案:
將同一個(gè)表中外鍵,增加不同的releated_name。
以上這篇Django中ORM找出內(nèi)容不為空的數(shù)據(jù)實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. php使用正則驗(yàn)證密碼字段的復(fù)雜強(qiáng)度原理詳細(xì)講解 原創(chuàng)2. vue前端RSA加密java后端解密的方法實(shí)現(xiàn)3. JSP+Servlet實(shí)現(xiàn)文件上傳到服務(wù)器功能4. 基于jsp+mysql實(shí)現(xiàn)在線水果銷售商城系統(tǒng)5. 基于javaweb+jsp實(shí)現(xiàn)企業(yè)財(cái)務(wù)記賬管理系統(tǒng)6. CSS可以做的幾個(gè)令你嘆為觀止的實(shí)例分享7. ASP動(dòng)態(tài)網(wǎng)頁(yè)制作技術(shù)經(jīng)驗(yàn)分享8. 淺談?dòng)蓀osition屬性引申的css進(jìn)階討論9. ASP中實(shí)現(xiàn)字符部位類似.NET里String對(duì)象的PadLeft和PadRight函數(shù)10. 利用CSS3新特性創(chuàng)建透明邊框三角

網(wǎng)公網(wǎng)安備