検索バーの実装
コード#コード#
class SearchView(View):
def get(self, request):
keyword = request.GET.get("keyword", "")
if not keyword:
return JsonResponse({"seller": [], "item": []}, status=200)
users = User.objects.filter(name__icontains=keyword)
products = Product.objects.filter(name__icontains=keyword).annotate(thumbnail=Case(When(image__is_thumbnail=True, then='image__url'))).exclude(thumbnail=None)
seller = [{
"id" : user.id,
"kakao_account" : user.kakao_account,
"name" : user.name,
"profile_image" : user.profile_image,
} for user in users]
item = [{
"id" : product.id,
"name" : product.name,
"price" : product.price,
"stock" : product.stock,
"image" : product.thumbnail
} for product in products]
return JsonResponse({"seller": seller, "item": item}, status=200)
Reference
この問題について(検索バーの実装), 我々は、より多くの情報をここで見つけました https://velog.io/@thsrns3934/검색바-구현テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol