I\'m building a news website.While I tried to get the list of relative news which have the same tags.The error said:The QuerySet value for an exact lookup must be li
I also experienced the same issue, try doing this, instead of:
relative_news = News.objects.filter(tag=tags)
to
relative_news = News.objects.filter(tag=tags).first()
Generally this error occurs when we use model queryset at the place of django models object. In the given question you have done the same. "Objects.filter" returns the model query set there can be single or multiple django model objects, but "objects.get" returns single django model object. Or we can use .last() and .first() with "objects.filter".
The following will work:
def newsDetailView(request, news_pk):
news = get_object_or_404(News, id=news_pk)
relative_news = News.objects.filter(tag__id__in=news.tag.all())