Django-Haystack returns no results in search form
问题 I am using Django-Haystack with Whoosh backend. When I do a query I get no results. I tried the debugging steps suggested in the Haystack docs by typing the following into a Django shell, and I can see that all the text I want has been indexed. from haystack.query import SearchQuerySet sqs = SearchQuerySet().all() sqs.count() sqs[0].text My search.html page has the following section (copied straight from the documentation): {% for result in page.object_list %} <p> <a href="{{ result.object