drf ๋ฐฑ์๋๊ฐ๋ฐ + ํ๋ก ํธ๊ฐ๋ฐ
: ์ด๋ฒ ํ๋ก์ ํธ๋ ํํ๋ก์ ํธ๋ก ์์ํฉ๋๋ค.
ํฌํ์๋ฅผ ๋ง์ด ๋ฐ์ ๊ฒ์๊ธ ์์๋๋ก ๋ฆฌ์คํ ๋๋ ์ธ๊ธฐ ๊ฒ์ํ์ ๋ง๋๋ ๊ณผ์ ์์,
ArticleModel์์ MTM ํ๋๋ก ์ฐธ์กฐํ๊ณ ์๋ vote๋ฅผ count()ํ์ฌ ํฌํ์์ ๋ฐ๋ผ order_by๋ฅผ ํ๊ณ ์ถ์๋ค.
์ด๋ฌํ ์ํฉ์์ django์ aggregation, annotage๋ฅผ ์ฌ์ฉํ๋ฉด ํด๊ฒฐํ ์ ์๋ค.
๐งฉ ๊ณต์ ๋ฌธ์ ์ฐธ๊ณ
https://docs.djangoproject.com/en/4.1/topics/db/aggregation/
๊ณต์ ๋ฌธ์ ๋ด์ฉ
๐งฉ ์ ์ฉ ์์
# ๋ฉ์ธํ์ด์ง์ฉ ํฌํ์ ํ6 ๋ฆฌ์คํ
class MostVotedArticleView(APIView):
def get(self, request):
vote = ArticleModel.objects.annotate(num_vote=Count('articlevotebridge')).order_by('-num_vote')[:6][::-1]
# articles = list(ArticleModel.objects.all().values())
# articles_id = []
# for article in articles:
# articles_id.append(article['id'])
# vote_counts = []
# for id in articles_id:
# vote_count = ArticleVoteBridge.objects.filter(article_id=id).count()
# vote_counts.append(vote_count)
# count_list = { name:value for name, value in zip(articles_id, vote_counts)}
# vote_rank = sorted(count_list.items(), key=lambda x: x[1], reverse=True)[:6]
# print(vote_rank)
# rank_articles = []
# for rank in range(len(vote_rank)):
# ranker = vote_rank[rank][0]
# rank_articles.append(ranker)
# print(rank_articles)
# article_rank = ArticleModel.objects.filter(id__in = rank_articles)[::-1]
return Response(ArticleSerializer(vote, many=True).data)
์๋์ ์ฃผ์์ django์ aggregation ๊ฐ๋ ์ ๋ชฐ๋์๋, ์ด๋ป๊ฒ๋ ๊ตฌํํด๋ณด๋ ค๊ณ ๋๋ฆ ๋ ธ๋ ฅํ๋ ์ฝ๋์๋๋ฐ aggregation์ ์ด์ฉํ๋ ๊ทธ๋ฅ ํ ์ค๋ก ๊น๋ํ๊ฒ ์ํ๋ ๊ฐ์ ์ถ๋ ฅํ ์ ์์๋ค.