django 插入库表时如何添加many-to-many字段数据

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

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

创建对象时,多对多字段不能直接通过下面的方式处理:

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)

参考:  https://stackoverflow.com/questions/50015204/direct-assignment-to-the-forward-side-of-a-many-to-many-set-is-prohibited-use-e 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值