list comprehension
-
list comprehension 중복 제거 - Object of type set is not JSON serializablePython 2022. 1. 16. 14:56
class ProductListView(View): def get(self, request, *args, **kwargs): tagcategory = request.GET.get('tagcategory', None) tag = request.GET.get('tag', None) user_type = request.GET.get('user_type', None) q = Q() if user_type: q &= Q(user__user_type__name=user_type) if tagcategory: q &= Q(producttag__tag__tag_category__name=tagcategory) if tag: q &= Q(producttag__tag__name=tag) products = Product...