本文介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。