创建对象时,多对多字段不能直接通过下面的方式处理:
from .models import Blog, Author, User
author = Author.objects.get(id=1)
users = User.objects.filter(id__in=(2, 3, 4))
# 这样直接写过不了,会报错: Direct assignment to the forward side of a many-to-many set is prohibited
Blog.objects.create(
author=author,
likes=users
)
在创建表时就添加多对多数据的话,可通过下面的方式来处理:
from .models import Blog, Author, User
author = Author.objects.get(id=1)
users = User.objects.filter(id__in=(2, 3, 4))
# 这样直接写过不了,会报错: Direct assignment to the forward side of a many-to-many set is prohibited
blog = Blog.objects.create(
author=author
)
# create的时候不写many to many 字段,写完后单独设置这些字段就可以了
blog.likes.set(users)

本文详细解析了在使用Django框架创建模型对象时,如何避免直接赋值多对多字段的常见错误,并提供了正确的处理方式,即先创建对象再使用set()方法来添加多对多关系。
837

被折叠的 条评论
为什么被折叠?



