📌  相关文章
📜  “get_or_create”接受 1 个位置参数,但给出了 2 个 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:21.346000             🧑  作者: Mango

代码示例1
# Make sure to specify the kwargs

# Instead of
MyModel.objects.get_or_create(attr)  # WRONG!

# Use
MyModel.objects.get_or_create(attr=attr)  # CORRECT!