标签: django-models
我无法解除多对多的关系......
b = Blog.objects.get(id=1) e = Entry.objects.get(id=234) b.entry_set.remove(e)
似乎不起作用...... 如何在不删除任何内容的情况下解除关联?
答案 0 :(得分:0)
请务必在删除条目后致电b.save()。
b.save()