0

我希望 Tag (BlogPost) 的对应对象至少有 1 个 Tag 实例,否则不应该创建它。(与 null=False 效果相同)。我尝试了很多,但无法弄清楚应用这些约束。有任何想法吗?

class Tag(models.Model):
    content_type = models.ForeignKey(ContentType)
    object_id = models.PositiveIntegerField()
    content_object = generic.GenericForeignKey('content_type', 'object_id')

    text = models.CharField("text", max_length=255)

    class Meta:
        unique_together = ('content_type', 'object_id', 'text',)


class BlogPost(models.Model):
    title = models.CharField("title", max_length=255)
    tags = generic.GenericRelation(Tag, verbose_name="tags")


class TagInline(generic.GenericTabularInline):
    model = Tag
    extra = 1


class BlogPostAdmin(admin.ModelAdmin):
    inlines = (TagInline,)
4

1 回答 1

0

如果您希望以数据库约束的形式进行此操作,那么我不确定是否存在这样的事情。

否则我会去覆盖你的模型上的clean( self ) 功能。这可用于自定义验证。

def clean( self ):
    # validate that this model has one or more tag
于 2012-10-10T22:46:50.583 回答