3

考虑以下 Django 模型:

class Host(models.Model):
    # This is the hostname only
    name = models.CharField(max_length=255)

class Url(models.Model):
    # The complete url
    url = models.CharField(max_length=255, db_index=True, unique=True)
    # A foreign key identifying the host of this url 
    # (e.g. for http://www.example.com/index.html it will
    # point to a record in Host containing 'www.example.com'
    host = models.ForeignKey(Host, db_index=True)

我也有这个表格:

class UrlForm(forms.ModelForm):
    class Meta:
        model = Urls

问题如下:我想自动计算主机字段的值,所以我不希望它出现在网页中显示的 HTML 表单上。

如果我使用“排除”从表单中省略此字段,那么如何使用该表单将信息保存在数据库中(这需要存在主机字段)?

4

2 回答 2

3

使用commit=False

result = form.save(commit=False)
result.host = calculate_the_host_from(result)
result.save()
于 2009-10-29T11:59:20.727 回答
1

您可以使用排除,然后以“清洁”方法的形式设置您想要的任何内容。

所以以你的形式:

class myform(models.ModelForm):
   class Meta:
       model=Urls
       exclude= ("field_name")
   def clean(self):
      self.cleaned_data["field_name"] = "whatever"
      return self.cleaned_data
于 2009-10-29T11:50:17.060 回答