-
這是一個可選參數,默認為逗號:
,
。該值用於拆分提交的數據。它允許您為多維數據鏈接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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。