user_image
By  用户6176668696    On   2022年11月11日 11:11

刘老师好,我貌似发现了一个bug,这条语句会报错 Blog.objects.exclude( entry=Entry.objects.filter( headline__contains='Lennon', pub_date__year=2008, ), ) ValueError: The QuerySet value for an exact lookup must be limited to one result using slicing 改成entry__in=就对了,因为里面查询出来的是一个列表。