📌  相关文章
📜  如何检查给定的主键是否存在于 django 模型中 - Python 代码示例

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

代码示例1
If using the object ---
try:
   obj = model1.objects.get(pk=20)
except DoesNotExist:
   ###do something####
    
Else ----
if model1.objects.filter(pk=20).exists():
   ###do something###
else:
  ###do otherthing###