gpt4 book ai didi

python - Django - 创建模型的新实例

转载 作者:太空宇宙 更新时间:2023-11-04 08:15:38 25 4
gpt4 key购买 nike

回答

正如 Sergey 所指出的,class Model(**kwargs) 是无效的,是 Django 文档中的错字。
“类”部分来自他们编写时使用的标记。

因此,它们在 Django 文档中的实际含义是:

Creating objects

To create a new instance of a model, just instantiate it like any other Python class:

Model(**kwargs)

The keyword arguments are simply the names of the fields you’ve defined on your model. Note that instantiating a model in no way touches your database; for that, you need to save().




原始问题

我在阅读 Django Docs about Model instances 时发现了以下内容:

Creating objects

To create a new instance of a model, just instantiate it like any other Python class:

class Model(**kwargs)

The keyword arguments are simply the names of the fields you’ve defined on your model. Note that instantiating a model in no way touches your database; for that, you need to save().


这两个代码有什么区别?

class Model(**kwargs)
new_model = Model(**kwargs)


我知道第二个使用 kwargs 创建类模型的新实例。
跟第一个有区别吗?在我看来,它似乎重新定义了 Model 类。

最佳答案

class Model(**kwargs) 不是 valid Python syntax , 后者看起来像

class Model(SomeBaseClass):
pass

从格式判断(该行看起来像副标题),这一定是 Django 文档中的一个错误。

如果您查看 Sphinx source of the page ,您会看到“类”实际上是 Sphinx 标记的一部分。他们的意思是

To create a new instance of a model, just instantiate it like any other Python class:

Model(**kwargs)

The keyword arguments are simply the names of the fields you've defined on your model.

关于python - Django - 创建模型的新实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15075315/

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