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