'dict'对象没有'create'/'save'属性

时间:2012-08-01 19:56:02

标签: python django django-models django-forms

我尝试将django poll应用程序应用于我自己的应用程序(IMC计算器),以改进和构建我在python / django中的第一步的小项目。

我尝试保存 accueil.html 上的第一个表单的数据:

<form action="" method="post">
  <table>
    {{ form.as_table }}
  </table>

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

这是我的 forms.py

from django import forms

class IndividuDataForm(forms.Form):
    nom = forms.CharField(max_length=100)
    prenom = forms.CharField(max_length= 100)
    anniversaire = forms.DateField()
    taille = forms.IntegerField()
    poids = forms.IntegerField()

这是我的 models.py

from django.db import models

from django.forms import ModelForm

class Individu(models.Model):

    nom = models.CharField(max_length=100)
    prenom = models.CharField(max_length= 100)
    anniversaire = models.DateField()
    taille = models.IntegerField()
    poids = models.IntegerField()

    def __unicode__(self):

       return self.nom

class ImcResultat(models.Model):

    individu = models.ManyToManyField(Individu)

    imc = models.IntegerField()

    date_imc = models.DateField()

class IndividuForm(ModelForm):

    class Meta:

        model = Individu


class ImcResultatForm(ModelForm):

    class Meta:

        model = ImcResultat

最后我的 * views.py * 就在这里: 当我尝试将数据从表单保存到数据库时,问题出在第13行 * a = cd.create()*

from django.shortcuts import render_to_response
from django.http import HttpResponse, HttpResponseRedirect
from models import Individu, ImcResultat
from forms import IndividuDataForm

def accueil(request):

    if request.method == 'POST':

        form = IndividuDataForm(request.POST)

        if form.is_valid():

            cd = form.cleaned_data

            a = cd.create() **#this is the problem**

            return HttpResponseRedirect('/accueil/page2/')

    else:

        form = IndividuDataForm()

        return render_to_response('accueil.html', {'form':form})





def page2(request):



    return render_to_response('page2.html')

我想这是在views.py的第一部分,我的函数不能很好地工作,它不会将表单保存在数据库中。 def accueil(请求):

if request.method == 'POST':

    form = IndividuDataForm(request.POST)

    if form.is_valid():

        cd = form.cleaned_data

        a = cd.create() **#this is the problem**

        return HttpResponseRedirect('/accueil/page2/')

在检查表单是否有效后,我清理表单中的数据然后尝试保存它。 我收到了这个错误:

Exception Type: AttributeError 
Exception Value: 'dict' object has no attribute 'create'

我猜这是来自一个词典,但从来没有在我的代码中我使用{}用于词典列表。 所以我不知道并坚持学习的过程。

感谢您的帮助,我希望从我的第一篇stackoverflow帖子中我没有犯过太多错误。

3 个答案:

答案 0 :(得分:3)

您应该使用ModelForm,它将自动定义字段以匹配模型上的字段。然后,您可以调用form.save()直接从表单创建实例。

答案 1 :(得分:2)

丹尼尔的答案更正确

if form.is_valid():
    form.save()

我会留下我的原始答案,仅用于文档链接。

form.cleaned_data是字典类型,没有create()方法。我假设您正在尝试在数据库中创建该数据的模型?

看看Can a dictionary be passed to django models on create?从该词典创建一个模型。一个例子可能是:

cd = form.cleaned_data
themodel = Individu(**cd)
themodel.save()

以下是处理表单数据的文档。

https://docs.djangoproject.com/en/dev/topics/forms/#processing-the-data-from-a-form

祝你好运!

答案 2 :(得分:-2)

如果您只想将提交的数据保存为django ModelForm,请使用form.save()。

请参阅:https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#s-the-save-method

这将使用已清理/验证的数据。

如果你需要,你可以使用form.cleaned_data。除了用模型实例保存它。