Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Django,我应该如何使用 django.db.models 中的 Q 对象和 count() 来使用查询?
鉴于使用过滤器将产生一个查询集对象,您应该只能在所述包含过滤器的末尾使用 count() 。喜欢:
count = MyModel.objects.filter(Q(my_field__startswith='Hello')).count()