当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django Left用法及代码示例


本文介绍 django.db.models.functions.Left 的用法。

声明

class Left(expression, length, **extra)

返回给定文本字段或表达式的前 length 个字符。

使用示例:

>>> from django.db.models.functions import Left
>>> Author.objects.create(name='Margaret Smith')
>>> author = Author.objects.annotate(first_initial=Left('name', 1)).get()
>>> print(author.first_initial)
M

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.functions.Left。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。