本文介紹 django.db.models.functions.Concat
的用法。
聲明
class Concat(*expressions, **extra)
接受至少兩個文本字段或表達式的列表並返回連接的文本。每個參數必須是文本或字符類型。如果你想連接 TextField()
和 CharField()
,那麽一定要告訴 Django output_field
應該是 TextField()
。連接 Value
時也需要指定 output_field
,如下例所示。
這個函數永遠不會有空結果。在 null 參數導致整個表達式為 null 的後端,Django 將確保每個 null 部分首先轉換為空字符串。
使用示例:
>>> # Get the display name as "name (goes_by)"
>>> from django.db.models import CharField, Value as V
>>> from django.db.models.functions import Concat
>>> Author.objects.create(name='Margaret Smith', goes_by='Maggie')
>>> author = Author.objects.annotate(
... screen_name=Concat(
... 'name', V(' ('), 'goes_by', V(')'),
... output_field=CharField()
... )
... ).get()
>>> print(author.screen_name)
Margaret Smith (Maggie)
相關用法
- Python Django ContentTypeManager用法及代碼示例
- Python Condition release()用法及代碼示例
- Python Condition notify()用法及代碼示例
- Python Django ContextMixin.get_context_data用法及代碼示例
- Python Condition wait()用法及代碼示例
- Python Condition acquire()用法及代碼示例
- Python Django ContentFile用法及代碼示例
- Python Condition notify_all()用法及代碼示例
- Python Django ContextMixin.extra_context用法及代碼示例
- Python Collections.UserString用法及代碼示例
- Python Django Coalesce用法及代碼示例
- Python Django Cot用法及代碼示例
- Python Collections.UserDict用法及代碼示例
- Python Django CoordTransform用法及代碼示例
- Python Collections.UserList用法及代碼示例
- Python Django Collate用法及代碼示例
- Python Django ComboField.fields用法及代碼示例
- Python Django Cos用法及代碼示例
- Python Tableau CSVRequestOptions用法及代碼示例
- Python Calendar itermonthdays2()用法及代碼示例
- Python Calendar monthdatescalendar()用法及代碼示例
- Python CSV轉JSON用法及代碼示例
- Python Django CustomUserManager.create_user用法及代碼示例
- Python Calendar itermonthdates()用法及代碼示例
- Python Calendar iterweekdays()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.db.models.functions.Concat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。