當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Django Field.label用法及代碼示例


本文介紹 django.forms.Field.label 的用法。

聲明

Field.label

label 參數允許您為此字段指定“human-friendly” 標簽。這在 Field 顯示在 Form 時使用。

如上文“將表單輸出為 HTML”中所述,Field 的默認標簽是通過將所有下劃線轉換為空格並將 upper-casing 轉換為第一個字母從字段名稱生成的。如果該默認行為未產生足夠的標簽,請指定 label

這是一個完整的示例Form,它為它的兩個字段實現了label。我們指定了auto_id=False 來簡化輸出:

>>> from django import forms
>>> class CommentForm(forms.Form):
...     name = forms.CharField(label='Your name')
...     url = forms.URLField(label='Your website', required=False)
...     comment = forms.CharField()
>>> f = CommentForm(auto_id=False)
>>> print(f)
<tr><th>Your name:</th><td><input type="text" name="name" required></td></tr>
<tr><th>Your website:</th><td><input type="url" name="url"></td></tr>
<tr><th>Comment:</th><td><input type="text" name="comment" required></td></tr>

相關用法


注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.forms.Field.label。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。