gpt4 book ai didi

django - 在django中保存后对象的id为none

转载 作者:行者123 更新时间:2023-12-02 03:40:38 26 4
gpt4 key购买 nike

我正在遍历对象列表并保存。保存后我需要新生成的 id 或指针 id 但它是 None 。

这是我的代码:

for category in category_list:
saved_category = category.save()
print saved_category.parentCategory_ptr_id
print saved_category.id

这在例程运行后保存了我的对象,但同样,在这一行没有给我 id。

这是我的模型:
class ParentCategory(models.Model):
name = models.CharField(max_length=255)

class Category(ParentCategory):
description = models.CharField(max_length=255)

类别列表是这样创建的:
category_list = []
for row in value_list:
category = Category(description=row.description)
category_list.append(category)


return category_list

我究竟做错了什么?

最佳答案

问题在于:

saved_category = category.save()

它必须是:
category = category.save()

列表中原始保存的对象是包含 id 的对象。

关于django - 在django中保存后对象的id为none,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20304520/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com