本文介紹 django.template.defaultfilters.stringfilter
的用法。
聲明
django.template.defaultfilters.stringfilter()
如果你正在編寫一個隻需要一個字符串作為第一個參數的模板過濾器,你應該使用裝飾器 stringfilter
。這會將對象轉換為其字符串值,然後再傳遞給您的函數:
from django import template
from django.template.defaultfilters import stringfilter
register = template.Library()
@register.filter
@stringfilter
def lower(value):
return value.lower()
這樣,您就可以將整數傳遞給此過濾器,並且不會導致 AttributeError
(因為整數沒有 lower()
方法)。
相關用法
- Python string轉integer用法及代碼示例
- Python string.octdigits用法及代碼示例
- Python string.whitespace用法及代碼示例
- Python string capitalize()用法及代碼示例
- Python string.punctuation用法及代碼示例
- Python string center()用法及代碼示例
- Python Django strip_tags用法及代碼示例
- Python string strip()用法及代碼示例
- Python strip()用法及代碼示例
- Python str.isidentifier用法及代碼示例
- Python str.expandtabs用法及代碼示例
- Python str.title用法及代碼示例
- Python str.isupper用法及代碼示例
- Python str.rstrip用法及代碼示例
- Python str.splitlines用法及代碼示例
- Python str() vs repr()用法及代碼示例
- Python str.lstrip用法及代碼示例
- Python str.removeprefix用法及代碼示例
- Python str.split用法及代碼示例
- Python str()用法及代碼示例
- Python str.zfill用法及代碼示例
- Python str.strip用法及代碼示例
- Python strftime()用法及代碼示例
- Python str.format_map用法及代碼示例
- Python str.removesuffix用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.template.defaultfilters.stringfilter。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。