标签不是用 django-taggit 创建的

Tags doesn't created with django-taggit

我使用的是 django-taggit,我在使用下一个代码创建标签字段时遇到问题:

tags = TaggableManager()

模型中的所有其他字段均已创建。但是标签没有:( 我尝试使用 Django1.7.1 和 1.7.2,也尝试使用 db 的 sqlite 和 MySql.

在迁移中创建

('tags', taggit.managers.TaggableManager(to='taggit.Tag', through='taggit.TaggedItem', help_text='A comma-separated list of tags.', verbose_name='Tags'))

但为什么它不适用...我不知道。有人有想法吗?

选项through='taggit.TaggedItem'表示多对多关系有单独的table。