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


Python Django Repeat用法及代码示例


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

声明

class Repeat(expression, number, **extra)

返回重复 number 次的给定文本字段或表达式的值。

使用示例:

>>> from django.db.models.functions import Repeat
>>> Author.objects.create(name='John', alias='j')
>>> Author.objects.update(name=Repeat('name', 3))
1
>>> print(Author.objects.get(alias='j').name)
JohnJohnJohn

相关用法


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