UpdateView无法处理POST请求-无法调用表单?

时间:2018-07-25 17:25:10

标签: python django django-views django-class-based-views

根据UpdateView上的文档,这应该非常简单,并且确实显示了表单以及数据库中的内容,但是当单击“提交”按钮时,django将显示一条消息:

'ProfileForm' object is not callable'. 

为什么需要可调用表格?例如,该表单可以很好地与CreateView一起使用,所以在那里没有问题,不明白为什么现在会抱怨。

我研究了Google的stackoverflow和搜索,的确有结果,但是它们似乎都不适用于我的情况,因为虽然显然我显然是根据django编写的,但我没有看到我犯任何错误。

我的代码如下:

class PortfolioEditBase(UpdateView):
    post_req = False
    url_name = ''

    def form_valid(self, form):
        self.post_req = True
        return super(PortfolioEditBase, self).get_form(form)

    def get_context_data(self, **kwargs):
        context = super(PortfolioEditBase, self).get_context_data(**kwargs)
        context['post_req'] = self.post_req
        context['profile_id'] = self.kwargs['profile_id']
        return context

    def get_success_url(self):
        return reverse(self.url_name, args=self.kwargs['profile_id'])


class PortfolioEditGeneralInfo(PortfolioEditBase):
    model = Profile
    form_class = ProfileForm
    url_name = 'plan:general-info-edit'
    template_name = 'plan/portfolio/edit/general_info_edit.html'

个人资料表单具有以下代码:

class ProfileForm(ModelForm):
  class Meta:
    model = Profile
    fields = ['company', 'exchange', 'ticker',
              'investment_stage', 'investment_type']
    widgets = {
      'earnings_growth': Textarea(attrs={'cols': 1, 'rows': 2}),
    }

这是相关的urls.py代码:

url(r'^portfolio/general-info/edit/(?P<profile_id>[0-9]+)$', views.PortfolioEditGeneralInfo.as_view(), name='general-info-edit'),

我认为django给出的错误消息没有任何意义。如何给出一条错误消息,进一步说明实际问题是什么。使用基于函数的视图非常简单,并且只需几行代码,但是基于类的视图被认为是“最佳实践”。它似乎试图获取表单数据,但是我不明白为什么它会有任何问题,为什么它会调用from而不是使用request.POST来获取数据。

有人知道这是怎么回事吗?当它如此简单时令人讨厌。我使用的其他基于类的视图几乎没有任何问题。

1 个答案:

答案 0 :(得分:0)

form_valid方法中的错误。应该是form_vaild的{​​{1}}的代名词:

get_form

def form_valid(self, form): self.post_req = True return super(PortfolioEditBase, self).form_valid(form) 方法需要表单类作为参数。但是您正在传递表单实例。