-
默认情况下,这设置为
False
。当False
时,存储来自重复字段的每个值。当设置为True
时,任何空白的尾随值都将从结果中删除。如果基础字段具有required=True
,但remove_trailing_nulls
是True
,则空值仅允许在末尾,并将被剥离。一些例子:
SplitArrayField(IntegerField(required=True), size=3, remove_trailing_nulls=False) ['1', '2', '3'] # -> [1, 2, 3] ['1', '2', ''] # -> ValidationError - third entry required. ['1', '', '3'] # -> ValidationError - second entry required. ['', '2', ''] # -> ValidationError - first and third entries required. SplitArrayField(IntegerField(required=False), size=3, remove_trailing_nulls=False) ['1', '2', '3'] # -> [1, 2, 3] ['1', '2', ''] # -> [1, 2, None] ['1', '', '3'] # -> [1, None, 3] ['', '2', ''] # -> [None, 2, None] SplitArrayField(IntegerField(required=True), size=3, remove_trailing_nulls=True) ['1', '2', '3'] # -> [1, 2, 3] ['1', '2', ''] # -> [1, 2] ['1', '', '3'] # -> ValidationError - second entry required. ['', '2', ''] # -> ValidationError - first entry required. SplitArrayField(IntegerField(required=False), size=3, remove_trailing_nulls=True) ['1', '2', '3'] # -> [1, 2, 3] ['1', '2', ''] # -> [1, 2] ['1', '', '3'] # -> [1, None, 3] ['', '2', ''] # -> [None, 2]
本文介绍django.contrib.postgres.forms.SplitArrayField.remove_trailing_nulls
的用法。
声明
remove_trailing_nulls
相关用法
- Python Django SpatialReference用法及代码示例
- Python Django SpatialReference.__getitem__用法及代码示例
- Python Scipy integrate.quadrature()用法及代码示例
- Python Scipy stats.hypsecant.moment()用法及代码示例
- Python String Center()用法及代码示例
- Python Django SimpleTestCase.client用法及代码示例
- Python Django Signal用法及代码示例
- Python Scipy stats.hypsecant.median()用法及代码示例
- Python Sympy Ellipse.equation()用法及代码示例
- Python String decode()用法及代码示例
- Python String转Binary用法及代码示例
- Python String count()用法及代码示例
- Python Scipy stats.halfgennorm.fit()用法及代码示例
- Python Tableau Server用法及代码示例
- Python Sympy encloses_point()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python Scipy stats.halfgennorm.stats()用法及代码示例
- Python Set issubset()用法及代码示例
- Python Sympy Plane.perpendicular_plane()用法及代码示例
- Python Scipy stats.halfgennorm.moment()用法及代码示例
- Python Scipy stats.halfgennorm.std()用法及代码示例
- Python Scipy stats.halfgennorm.logcdf()用法及代码示例
- Python String转Long用法及代码示例
- Python Django SearchHeadline用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.postgres.forms.SplitArrayField.remove_trailing_nulls。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。