Django Haystack 重建索引

发布于 2024-10-29 07:49:26 字数 259 浏览 10 评论 0原文

我正在阅读 Haystack 的“入门”指南,并尝试使用 Haystack 为我的网站实现 Whoosh 后端。我成功地设置了整个项目,我还可以在我的 search.html 模板上看到搜索框。但我无法建立索引。

当我输入 ./manage.pyrebuild_index 时,出现错误:

未知命令:rebuild_index

我知道这是一个微不足道的问题。我无法理解manage.py 文件如何理解最初不属于它的命令。

I was reading the 'Getting Started' guide of Haystack and tried to implement Whoosh backend for my website with Haystack. I was successful in setting up the whole project and I can also see the search box on my search.html template. I am unable to build the index though.

When I type ./manage.py rebuild_index, I get the error:

Unknown command: rebuild_index

I know this is a trivial issue. I am unable to understand how the manage.py file can ever understand commands that were not originally a part of it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Bonjour°[大白 2024-11-05 07:49:26

您的 INSTALLED_APPS 中有 haystack 吗?

manage.py 通过导入 settings.py 文件并从 INSTALLED_APPS 变量加载模块来学习新命令。

Do you have haystack in your INSTALLED_APPS?

manage.py learns new commands by importing the settings.py file and loading modules from your INSTALLED_APPS variable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文