-
这是一个可选参数,默认为逗号:
,
。该值用于拆分提交的数据。它允许您为多维数据链接SimpleArrayField
:>>> from django import forms >>> from django.contrib.postgres.forms import SimpleArrayField >>> class GridForm(forms.Form): ... places = SimpleArrayField(SimpleArrayField(IntegerField()), delimiter='|') >>> form = GridForm({'places': '1,2|2,1|4,3'}) >>> form.is_valid() True >>> form.cleaned_data {'places': [[1, 2], [2, 1], [4, 3]]}
注意
该字段不支持对分隔符进行转义,因此在分隔符是基础字段中的有效字符的情况下要小心。分隔符不必只有一个字符。
本文介绍django.contrib.postgres.forms.SimpleArrayField.delimiter
的用法。
声明
delimiter
相关用法
- Python Django SimpleArrayField.base_field用法及代码示例
- Python Django SimpleTestCase.client用法及代码示例
- Python Django SimpleTestCase.assertTemplateUsed用法及代码示例
- Python Django SimpleTestCase.assertRaisesMessage用法及代码示例
- Python Django SimpleTestCase.assertHTMLEqual用法及代码示例
- Python Django SimpleTestCase.client_class用法及代码示例
- Python Django SimpleTestCase.assertFieldOutput用法及代码示例
- Python Django Signal用法及代码示例
- Python Django Sign用法及代码示例
- Python Django Sin用法及代码示例
- Python Tableau SiteItem用法及代码示例
- Python Scipy integrate.quadrature()用法及代码示例
- Python Scipy stats.hypsecant.moment()用法及代码示例
- Python String Center()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.postgres.forms.SimpleArrayField.delimiter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。