gpt4 book ai didi

django - django-haystack 和 Solr 的拼写建议

转载 作者:行者123 更新时间:2023-12-01 13:03:13 25 4
gpt4 key购买 nike

我得到的拼写建议是“无”。

首先,我在 settings.py 文件中设置了这个:

HAYSTACK_INCLUDE_SPELLING = True

我重建了索引:

python manage.py rebuild_index

并更新它以取得良好的效果

python manage.py update_index

搜索工作正常。当我搜索“充电器”时,它会返回匹配的结果。所以在我的 views.py 中,我尝试了:

from haystack.query import SearchQuerySet
def testpage(request):

test_results = SearchQuerySet().auto_query('Chargr')
spelling_suggestion = test_results.spelling_suggestion()

return render_to_response('testpage.html', {
'test': test_results,
'spelling_suggestion': spelling_suggestion
})

但是,我的模板:

<html>
<body>

{{ test }}<p>
{{ spelling_suggestion }}

</body>
</html>

仍然没有返回:

[]

None

显然,我对 {{ test }} 没有任何期望,但我不应该为 {{ spelling_suggestion }} 得到一些东西吗?我错过了什么?

最佳答案

我终于弄明白了(在 Haystack 消息组的帮助下)

有一些细节here关于必须进行的配置更改。此外,我必须在 haystack 的 views.py 文件中添加行(在 def extra_context 下):

spelling = self.results.spelling_suggestion(self.query)
return {'suggestion': spelling, . . .

然后我将 {{ suggest }} 添加到我的输出模板

关于django - django-haystack 和 Solr 的拼写建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4594782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com