我正在按照有关haystack 文档的说明进行操作。
我没有得到 SearchQuerySet().all() 的结果。
我认为问题出在这里
$ ./manage.py rebuild_index
WARNING: This will irreparably remove EVERYTHING from your search index in connection 'default'.
Your choices after this are to restore from backups or rebuild via the `rebuild_index` command.
Are you sure you wish to continue? [y/N] y
Removing all documents from your index because you said so.
All documents removed.
Indexing 0 notes. // <-- here 0 notes!
mysite/note/search_indexes.py 看起来像
import datetime
import haystack
from haystack import indexes
from note.models import Note
class NoteIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
author = indexes.CharField(model_attr='user')
pub_date = indexes.DateTimeField(model_attr='pub_date')
def get_model(self):
return Note
def index_queryset(self):
"""Used when the entire index for model is updated."""
return self.get_model().objects.filter(pub_date__lte=datetime.datetime.now())
我有 mysite/note/templates/search/indexes/note/Note_text.txt
{{ object.title }}
{{ object.user.get_full_name }}
{{ object.body }}
你有运行 haystack.autodiscover 的 search_sites.py 吗?
您是否在主 haystack.site(通常在您的 search_indexes.py 中)注册了您的模型?
但是在第一篇文章中没有提到 search_sites.py 、 haystack.autodiscover 、 haystack.site 。
我很混乱。他们的文档是否处理不同的 haystack 版本?
我的设置是..
干草堆版本 2.0.0.beta
django 1.3.1
solr 3.6.0
sqlite 3