我有一个批量更新。创建的每条消息我都需要调用 .send(gateway) 这是我尝试过的:
objs = [
Message(
recipient_number=e.mobile,
content=content,
sender=e.contact_owner,
billee=user,
sender_name=sender
).send(gateway)
for e in query
]
# Send messages to DB
Message.objects.bulk_create(objs)
我收到此错误:
处理 ID 为 3ab72d3c-5fd8-4b7d-8cc5-e0400455334f 的任务请求引发异常:'AttributeError("\'NoneType\' object has no attribute \'pk\'",)'
为什么?