我正在尝试将搜索与django-haystack集成,
虽然它适用于“示例”后端,但当用whoosh替换后端时,它总是返回0结果。
settings.py:
HAYSTACK_DEFAULT_OPERATOR = 'AND'
HAYSTACK_SITECONF = 'search_sites'
HAYSTACK_SEARCH_ENGINE = 'whoosh'
HAYSTACK_SEARCH_RESULTS_PER_PAGE = 20
HAYSTACK_WHOOSH_PATH = os.path.join(PROJECT_ROOT, 'search_index')
search_sites.py
import haystack
haystack.autodiscover()
简档/ search_indexes.py:
from haystack import indexes
from haystack import site
from profiles.models import Profile
class ProfileIndex(indexes.SearchIndex):
text = indexes.CharField(document=True, use_template=True)
def index_queryset(self):
"""Used when the entire index for model is updated."""
return Profile.objects.all()
site.register(Profile, ProfileIndex)
模板/搜索/索引/简档/ profile_text.txt:
{{ profile.name }}
{{ profile.description }}
运行python manage.py rebuild_index
会返回:
All documents removed.
Indexing 60 profiles.
在shell中运行以下内容时:
>>> from haystack.query import SearchQuerySet
>>> sqs = SearchQuerySet().all()
>>> sqs.count()
0
当用“简单”后端切换飞快移动时,一切正常,返回60个结果。
根据Getting Started with Haystack和Debugging Haystack,似乎所有内容都设置正确 我尝试安装以前版本的Whoosh,没有任何成功。
此时感到非常愚蠢,任何帮助都会非常感激。
包版本:
python==2.7
Django==1.3.1
Whoosh==2.3.2
django-haystack==1.2.6
更新
答案 0 :(得分:7)
好的,找到它,然后我就更傻了......
templates/search/indexes/profiles/profile_text.txt
应该是:
{{ object.name }}
{{ object.description }}
而不是:
{{ profile.name }}
{{ profile.description }}
令我困惑的是"简单"与数据库匹配的后端,显然忽略了数据模板。