5

在这里发疯......从外壳中,我可以做:

product.tags.add("a_new_tag")

将标签添加到数据库中,并且与产品的标签关联正常工作。(即,当我做Product.objects.filter(tags__name__in=["a_new_tag"]适当的产品时吐出)

我需要做的是在处理表单时在管理员中添加一些标签。

这是我的表单代码(阅读第 4 行和第 5 行的注释):

class ProductForm(ModelForm):
        def save(self, commit=True):
            product = super(ProductForm, self).save(commit=False)
            product.type="New Type to Confirm Info is being Saved Correctly" //this is saved to the product.
            product.tags.add('a_new_tag_1') //the tag is saved to the taggit db, but the association with the product isn't kept.
            product.save()
            self.save_m2m()
            return m

我尝试在管理类中进行保存,但这也不起作用:

class ProductAdmin(admin.ModelAdmin):
    form = ProductForm
    def save_model(self, request, obj, form, change):
        obj.type="new_type" //this works 
        obj.tags.add("a_new_tag_2") //tag association not saved
        obj.save()
        form.save_m2m()

我究竟做错了什么?提前致谢!

4

2 回答 2

2

所以事实证明这form.save_m2m()是罪魁祸首。如果我从自己的代码中取出它,并在 django.contrib.admin.options.py(第 983 行)中将其注释掉,则关联和标签都会被保存。

显然,更改 django 的代码不是一个好主意,所以我最终change_view()在我的 ProductAdmin(以及add_view(). 我在调用之后添加了标签super(),所以form.save_m2m()不会覆盖我的标签关联。

这很奇怪,因为它直接违反了 django-taggit 的文档,该文档强调了调用的重要性: httpform.save_m2m() : //django-taggit.readthedocs.org/en/latest/forms.html

好吧,我不知道发生了什么,我可能会去 taggit 谷歌群组并通知他们。无论如何,感谢大卫的帮助,如果 pdb 太棒了,而且我以前不知道的话 :)

于 2011-05-12T03:29:58.920 回答
0

您使用的是哪个标记系统?可能你需要使用product.tags.save()

于 2011-05-11T19:12:20.023 回答