How do I get the object if it exists, or None if it does not exist?

后端 未结 19 1499
清酒与你
清酒与你 2020-11-28 01:14

When I ask the model manager to get an object, it raises DoesNotExist when there is no matching object.

go = Content.objects.get(name=\"baby\")
         


        
19条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 02:00

    Since django 1.6 you can use first() method like so:

    Content.objects.filter(name="baby").first()
    

提交回复
热议问题