最佳答案
当我要求模型管理器获取一个对象时,当没有匹配的对象时,它会引发DoesNotExist
。
go = Content.objects.get(name="baby")
而不是DoesNotExist
,我怎么能让go
为None
?