本文介绍 django.forms.Form.fields
的用法。
声明
Form.fields
您可以从其fields
属性访问
实例的字段:Form
>>> for row in f.fields.values(): print(row)
...
<django.forms.fields.CharField object at 0x7ffaac632510>
<django.forms.fields.URLField object at 0x7ffaac632f90>
<django.forms.fields.CharField object at 0x7ffaac3aa050>
>>> f.fields['name']
<django.forms.fields.CharField object at 0x7ffaac6324d0>
您可以更改
实例的字段以更改其在表单中的显示方式:Form
>>> f.as_table().split('\n')[0]
'<tr><th>Name:</th><td><input name="name" type="text" value="instance" required></td></tr>'
>>> f.fields['name'].label = "Username"
>>> f.as_table().split('\n')[0]
'<tr><th>Username:</th><td><input name="name" type="text" value="instance" required></td></tr>'
请注意不要更改 base_fields
属性,因为此修改将影响同一 Python 进程中的所有后续 ContactForm
实例:
>>> f.base_fields['name'].label = "Username"
>>> another_f = CommentForm(auto_id=False)
>>> another_f.as_table().split('\n')[0]
'<tr><th>Username:</th><td><input name="name" type="text" value="class" required></td></tr>'
相关用法
- Python Django Form.default_renderer用法及代码示例
- Python Django Form.as_p用法及代码示例
- Python Django Form.as_table用法及代码示例
- Python Django Form.is_multipart用法及代码示例
- Python Django Form.prefix用法及代码示例
- 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.fields。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。