本文介绍 django.db.models.functions.Length
的用法。
声明
class Length(expression, **extra)
接受单个文本字段或表达式并返回值的字符数。如果表达式为空,那么长度也将为空。
使用示例:
>>> # Get the length of the name and goes_by fields
>>> from django.db.models.functions import Length
>>> Author.objects.create(name='Margaret Smith')
>>> author = Author.objects.annotate(
... name_length=Length('name'),
... goes_by_length=Length('goes_by')).get()
>>> print(author.name_length, author.goes_by_length)
(14, None)
它也可以注册为转换。例如:
>>> from django.db.models import CharField
>>> from django.db.models.functions import Length
>>> CharField.register_lookup(Length)
>>> # Get authors whose name is longer than 7 characters
>>> authors = Author.objects.filter(name__length__gt=7)
相关用法
- Python Django Left用法及代码示例
- Python List remove()用法及代码示例
- Python List insert()用法及代码示例
- Python Django Layer.get_fields用法及代码示例
- Python Django Library.filter用法及代码示例
- Python Django Log用法及代码示例
- Python Django Library.inclusion_tag用法及代码示例
- Python List clear()用法及代码示例
- Python Django Layer用法及代码示例
- Python Lock acquire()用法及代码示例
- Python List reverse()用法及代码示例
- Python Django LineString.y用法及代码示例
- Python Django Layer.extent用法及代码示例
- Python List append()用法及代码示例
- Python Django LogEntry.action_flag用法及代码示例
- Python List cmp()用法及代码示例
- Python Django Layer.srs用法及代码示例
- Python Django Layer.num_fields用法及代码示例
- Python Lock release()用法及代码示例
- Python Django Layer.spatial_filter用法及代码示例
- Python Django Layer.num_feat用法及代码示例
- Python List pop()用法及代码示例
- Python List index()用法及代码示例
- Python List sort()用法及代码示例
- Python Django Layer.geom_type用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.functions.Length。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。