本文介紹 django.forms.Form.prefix
的用法。
聲明
Form.prefix
您可以在一個<form>
標記中放置多個 Django 表單。要為每個 Form
提供自己的命名空間,請使用 prefix
關鍵字參數:
>>> mother = PersonForm(prefix="mother")
>>> father = PersonForm(prefix="father")
>>> print(mother.as_ul())
<li><label for="id_mother-first_name">First name:</label> <input type="text" name="mother-first_name" id="id_mother-first_name" required></li>
<li><label for="id_mother-last_name">Last name:</label> <input type="text" name="mother-last_name" id="id_mother-last_name" required></li>
>>> print(father.as_ul())
<li><label for="id_father-first_name">First name:</label> <input type="text" name="father-first_name" id="id_father-first_name" required></li>
<li><label for="id_father-last_name">Last name:</label> <input type="text" name="father-last_name" id="id_father-last_name" required></li>
前綴也可以在表單類上指定:
>>> class PersonForm(forms.Form):
... ...
... prefix = 'person'
相關用法
- Python Django Form.default_renderer用法及代碼示例
- Python Django Form.as_p用法及代碼示例
- Python Django Form.as_table用法及代碼示例
- Python Django Form.is_multipart用法及代碼示例
- Python Django Form.fields用法及代碼示例
- Python Django Form.as_ul用法及代碼示例
- Python Django Form.cleaned_data用法及代碼示例
- Python Django FormView用法及代碼示例
- Python Django ForeignKey.on_delete用法及代碼示例
- Python Django ForeignKey.related_name用法及代碼示例
- Python Django ForeignKey.related_query_name用法及代碼示例
- Python Django ForeignKey.limit_choices_to用法及代碼示例
- Python Django File.save用法及代碼示例
- Python Django Field.description用法及代碼示例
- Python Django Feature.get用法及代碼示例
- Python File next()用法及代碼示例
- Python File tell()用法及代碼示例
- Python Django Floor用法及代碼示例
- Python Django Field.type_name用法及代碼示例
- Python Django Feed.item_geometry用法及代碼示例
- Python Django Feed用法及代碼示例
- Python Django Field.help_text用法及代碼示例
- Python File seek()用法及代碼示例
- Python Django Feature.fid用法及代碼示例
- Python OpenCV Filter2D()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.forms.Form.prefix。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。