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

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

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   
)

会报错:TypeError: Direct assignment to the forward side of a many-to-many set is prohibited

在创建表时就添加多对多数据的话,可通过下面的方式来处理: 

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)

如果报错:ValueError: “needs to have a value for field ”id“ before this many-to-many relationship can be used”

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(
    author=author   
)
# create的时候不写many to many 字段,写完后单独设置这些字段就可以了
blog.likes.set(users)

这是由于没有用create来创建,直接用Bolg来创建了,正确的是下面

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)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值