gpt4 book ai didi

django - crispy-form 的 Helper 没有生效

转载 作者:行者123 更新时间:2023-12-04 00:31:57 24 4
gpt4 key购买 nike

FormHelper 似乎什么都不做。这是我的表格:

class PerguntarForm(forms.Form):
title = forms.CharField(label='Título', max_length=200)
categoria = forms.ModelChoiceField(queryset=Category.objects.all(), empty_label=None)
orcamento = forms.FloatField(label='Preço máximo')

def __init__(self, *args, **kwargs):
super(PerguntarForm, self).__init__(*args, **kwargs)
self.helper = FormHelper(self)
self.helper.layout.append(Submit('save', 'save'))
self.helper.layout = Layout(
PrependedText('orcamento', ',00', active=True),
)

但是,PrependedText 在呈现时不会应用于“orcamento”字段。布局追加也没有,我放置它只是为了看看是否发生了什么。

这是输出:

<div id="div_id_title" class="form-group"><label for="id_title" class="control-label  requiredField">
Título<span class="asteriskField">*</span></label><div class="controls "><input class="textinput textInput form-control" id="id_title" maxlength="200" name="title" type="text" /> </div></div><div id="div_id_categoria" class="form-group"><label for="id_categoria" class="control-label requiredField">
Categoria<span class="asteriskField">*</span></label><div class="controls "><select class="select form-control" id="id_categoria" name="categoria"><option value="4">Celular</option><option value="5">TV</option><option value="6">Computador</option></select></div></div><div id="div_id_orcamento" class="form-group"><label for="id_orcamento" class="control-label requiredField">
Preço máximo<span class="asteriskField">*</span></label><div class="controls "><input class="numberinput form-control" id="id_orcamento" name="orcamento" step="any" type="number" /> </div></div>

<input type="submit" value="Enviar" />
</form>


</div>

最佳答案

确保您使用的是 crispy 表单标签,而不是 crispy 表单过滤器。

{% load crispy_forms_tags %}
{% crispy form %}

其中 form 是模板中表单的名称。

关于django - crispy-form 的 Helper 没有生效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27943640/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com