1

我在阅读文档时阅读了有关脆形式的教程。我发现一些东西非常有用,在https://django-crispy-forms.readthedocs.org/en/d-0/dynamic_layouts.html中操纵布局

layout.append(HTML("<p>whatever</p>"))
layout.insert(1, HTML("<p>whatever</p>"))

所以我尝试了:

class PostJobForm(forms.ModelForm):    
    def __init__(self, *args, **kwargs):
        self.helper = FormHelper()
        self.helper.form_tag = False

        self.helper.layout.insert(1,  HTML("<p>Drag and drop photos and video here</p><p class='big'>+</p><p>Or click to add using the file browser</p>"),)

        super(PostJobForm, self).__init__(*args, **kwargs)
    class Meta:
        model=Job
        exclude=['employer','hitcount','location']

我有错误

'NoneType' object has no attribute 'insert'

这个布局对象在哪里?教程中没有提到。

我该如何使用layout.insert(1, HTML("<p>whatever</p>"))

4

1 回答 1

1

super(PostJobForm, self).__init__(*args, **kwargs)必须放在 init 对象下方。并将 self 添加到函数 FormHelper() 中。

class PostJobForm(forms.ModelForm):    
    def __init__(self, *args, **kwargs):
        super(PostJobForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper(self)
        self.helper.form_tag = False
于 2013-06-05T04:18:02.590 回答