Model.Form中的`labels = {'text':''}`

时间:2018-05-09 14:00:39

标签: django

我对以下代码中的labels = {'text':''}感到困惑:

from django import forms
from .models import Topic
class TopicForm(forms.ModelForm):
    class Meta:
        model = Topic
        fields = ['text']
        labels = {'text':''}

labels = {'text':''}是否意味着

<label for='text'> </label>

2 个答案:

答案 0 :(得分:2)

实际上,它意味着该领域的label_name

labels = {'text':'My Name'}

呈现的HTML将是这样的:

<label> My Name </label>

答案 1 :(得分:1)

docs

中所述
  

标签是映射到标签的模型字段名称的字典。

所以是的,你可以在html中指定labels