Django removing object from ManyToMany relationship

亡梦爱人 提交于 2019-11-28 16:55:53
my_mood.interests.remove(my_interest)

Django's Relations Docs

Note: you might have to get an instance of my_mood and my_interest using Django's QuerySet API before you can execute this code.

If you need to remove all M2M references without touching the underlying objects, it's easier to work from the other direction:

interest.mood_set.clear()

While this does not directly address the OP's question, it's often useful in this situation.

In your case you can simply clear the relationship

my_mood.interests.clear()

Then perhaps when you are again creating new relation in your serializer you can do something like this

interests = Interests.objects.get_or_create(name='Something')
my_mood_obj.tags.add(tag[0])
my_mood_obj.save()
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!