-
如果所有输入值都为真,则返回
True
,如果所有值都为空或没有值,则返回default
,否则返回False
。使用示例:
class Comment(models.Model): body = models.TextField() published = models.BooleanField() rank = models.IntegerField() >>> from django.db.models import Q >>> from django.contrib.postgres.aggregates import BoolAnd >>> Comment.objects.aggregate(booland=BoolAnd('published')) {'booland': False} >>> Comment.objects.aggregate(booland=BoolAnd(Q(rank__lt=100))) {'booland': True}
本文介绍 django.contrib.postgres.aggregates.BoolAnd
的用法。
声明
class BoolAnd(expression, filter=None, default=None, **extra)
相关用法
- Python Django BoolOr用法及代码示例
- Python Django BoundField.label_tag用法及代码示例
- Python Django BoundField.id_for_label用法及代码示例
- Python PIL BoxBlur()用法及代码示例
- Python Django BoundField.initial用法及代码示例
- Python Django BoundField.value用法及代码示例
- Python Django BoundField.css_classes用法及代码示例
- Python Django BoundField.errors用法及代码示例
- Python Django BoundField.data用法及代码示例
- Python Django BoundField.name用法及代码示例
- Python Django BoundField.widget_type用法及代码示例
- Python Bytes转Int用法及代码示例
- Python Bytes转String用法及代码示例
- Python Django BaseCommand.style用法及代码示例
- Python Django BaseFormSet.get_ordering_widget用法及代码示例
- Python Binary转Hexadecimal用法及代码示例
- Python BaseException.with_traceback用法及代码示例
- Python Django BaseFormSet.ordering_widget用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.postgres.aggregates.BoolAnd。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。