检查查询是否返回任何结果的推荐习惯用法是什么? 例子:
orgs = Organisation.objects.filter(name__iexact = 'Fjuk inc') # If any results # Do this with the results without querying again. # Else, do something else...
我想有几种不同的检查方法,但我想知道有经验的 Django 用户会如何做。文档中的大多数示例只是忽略了没有找到任何东西的情况......
if not orgs: # Do this... else: # Do that...