4

我正在使用django-taggit来标记我的待办事项记录。

class Action(models.Model):
    name = models.CharField("Action Name", max_length=200)
    complete = models.BooleanField(default=False, verbose_name="Complete?")

    tags = TaggableManager()

我正在尝试制作记录的精确副本,直至与任务关联的标签。

new_obj = deepcopy(self)
new_obj.id = None
new_obj.save()

运行此代码后,副本是准确的,只是没有附属标签。如何将所有标签从“self”复制到 new_obj?

4

1 回答 1

4

而不是将标签添加到对象:

new_obj.tags.add(tag)

我将新对象添加到标签中:

for tag in self.tags.all():
    tag_object = TaggedItem(content_object = new_obj, tag = tag)
    tag_object.save()
于 2012-09-21T02:23:04.267 回答