条件查询 范围查询 模糊查询 条件查询 all() 返回全部结果集 filter(**kwargs) 返回满足参数定义的结果集 例如 Entry.objects.filter(pub_date__year=2006) exclude(**kwargs) 返回不满足参数定义的结果集 例如 Entry.objects.exclude(pub_date__year=2006) 链式查询 Entry.objects.filter(... headline__startswith='What'... ) .exclude(... pub_date__gte=datetim