我已经安装了Django-Haystack和Whoosh,并根据干草堆文档设置了所有内容,但无论我搜索什么,我总是得到"没有找到结果。"在搜索页面上,尽管索引显然没问题。
运行" manage.py rebuild_index"它正确地说明了:
Indexing 12 assets
indexed 1 - 12 of 12 (worker PID: 1234).
在Django shell中运行时:
from whoosh.index import open_dir
ix = open_dir('mysite/whoosh_index')
from pprint import pprint
pprint(list(ix.searcher().documents()))
它正确地返回了12个索引资产的所有细节,所以看起来索引很好,但无论我搜索什么,我都无法得到任何结果,只有"没有找到结果"!
我已经在StackOverflow(以及Google上出现的其他任何地方)的其他类似问题中遵循了建议,但无济于事。
有人有任何建议吗?
使用的文件(为简洁起见编辑):
settings.py
INSTALLED_APPS = [
....
'haystack',
'assetregister',
....
]
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine',
'PATH': os.path.join(os.path.dirname(__file__), 'whoosh_index'),
},
}
models.py
class Asset(models.Model):
asset_id = models.AutoField(primary_key=True)
asset_description = models.CharField(max_length=200)
asset_details = models.TextField(blank=True)
search_indexes.py
from haystack import indexes
from .models import Asset
class AssetIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
asset_description = indexes.CharField(model_attr='asset_description')
def get_model(self):
return Asset
def no_query_found(self):
# The .exclude is a hack from another stackoverflow question that prevents it returning an empty queryset
return self.searchqueryset.exclude(content='foo')
def index_queryset(self, using=None):
return self.get_model().objects
/templates/search/indexes/assetregister/asset_text.txt
{{ object.asset_description }}
{{ object.asset_details }}
urls.py
urlpatterns = [
url(r'^search/', include('haystack.urls')),
]
search.html
<h2>Search</h2>
<form method="get" action=".">
<table>
{{ form.as_table }}
<tr>
<td> </td>
<td>
<input type="submit" value="Search">
</td>
</tr>
</table>
{% if query %}
<h3>Results</h3>
{% for result in page.object_list %}
<p>
<a href="{{ result.object.get_absolute_url }}">{{ result.object.asset_description }}</a>
</p>
{% empty %}
<p>No results found.</p>
{% endfor %}
{% else %}
{# Show some example queries to run, maybe query syntax, something else? #}
{% endif %}
</form>
如果它有用,我的&#34; pip冻结&#34;:
Django==1.9.3
django-cleanup==0.4.2
django-haystack==2.5.0
django-pyodbc-azure==1.9.3.0
Pillow==3.2.0
pyodbc==3.0.10
Whoosh==2.7.4
答案 0 :(得分:0)
为了任何未来有这个问题的人的利益,我找到了一个非传统的解决方案......
所以我根据haystack文档仔细检查了一切,看起来一切都很好。我发现了一个名为&#34; django-haystackbrowser&#34;一旦安装正确,您可以通过django管理界面查看索引。
出于某种原因,一旦我在管理界面中查看了索引(并确认所有内容已经存在),然后使用
重新启动服务器python manage.py runserver
我终于开始收回搜索结果了!
不知道是什么导致了这个问题,当然也不知道如何使用该软件包查看索引,但它现在似乎正在返回结果!