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.
我想找到定义的产品类别的最低和最高价格。
我也希望能够做相反的事情,即找到给定价格范围的所有产品。
问题是 Satchmo 在其产品模型中没有价格。我怎么解决这个问题?
类别的最低/最高价格:
Product.objects.filter(category=some_category).aggregate(Min('price'), Max('price'))
按价格范围过滤的产品:
Product.objects.filter(price__price__range=(5,10))