前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Django中ORM找出内容不为空的数据实例

Django中ORM找出内容不为空的数据实例

作者头像
砸漏
发布2020-11-02 15:25:54
1.8K0
发布2020-11-02 15:25:54
举报
文章被收录于专栏:恩蓝脚本

在django操作数据库的时候如何找出内容不为空的数据呢?

代码语言:javascript
复制
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函数去找出nick不为空的数据,主要使用~Q

补充知识:Django报错 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:\workspace\pycharm\carwin\carwin_env\lib\site-packages\django\utils\autoreload.py”, line 226, in wrapper fn(*args, **kwargs) File “G:\workspace\pycharm\carwin\carwin_env\lib\site-packages\django\core\management\commands\runserver.py”, line 116, in inner_run self.check(display_num_errors=True) File “G:\workspace\pycharm\carwin\carwin_env\lib\site-packages\django\core\management\base.py”, line 472, in check raise 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’.

原因:

因为在一个表中多次引用某个外键表,而且没有指定唯一的releated_name,而导致的。

解决方案:

将同一个表中外键,增加不同的releated_name。

以上这篇Django中ORM找出内容不为空的数据实例就是小编分享给大家的全部内容了,希望能给大家一个参考。

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档