如何使用django haystack SearchQuerySet过滤结果



我正试图在django应用程序中使用django-haystack+whoosh。我的索引类看起来像这个

class ArticleIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
title = indexes.CharField(model_attr='title')
abstract = indexes.CharField(model_attr='abstract')
def get_model(self):
    return Article
def index_queryset(self, using=None):
    return self.get_model().objects.all()

我的模型是这样的:

class Article(models.Model):
title = models.CharField(max_length=100)
authors = models.ManyToManyField(User)
abstract = models.CharField(max_length=500, blank=True)
full_text = models.TextField(blank=True)
proquest_link = models.CharField(max_length=200, blank=True, null=True)
ebsco_link = models.CharField(max_length=200, blank=True, null=True)
def __unicode__(self):
    return self.title

在我的模板中,我使用ajax搜索字段来查询文章模型,并在同一页面中返回结果。从本质上讲,ajax向视图发出一个包含搜索文本的HttpPost请求。在视图中,我想获得所有Article对象的抽象字段包含通过HttpPost发送的搜索文本。在我看来,我正在获取搜索文本,然后尝试获取等模型

search_text = request.POST['search_text']
articles = SearchQuerySet().filter(abstract=search_text)

但它不会返回任何结果。如果我打电话给

articles = SearchQuerySet().all()

它将返回本地测试DB中的12个模型对象。但是,filter函数不会返回任何结果。我想做的是相当于

articles= Article.objects.filter(abstract__contains=search_text)

有什么建议吗?感谢

经过一些挖掘,我更新了我的索引类,如下所示:

class ArticleIndex(indexes.SearchIndex, indexes.Indexable):
    text = indexes.NgramField(document=True, use_template=True)
    title = indexes.NgramField(model_attr='title')
    abstract = indexes.NgramField(model_attr='abstract')
    def get_model(self):
        return Article
    def index_queryset(self, using=None):
        return self.get_model().objects.all()

对索引类型的属性使用.filter()有问题。姜戈干草堆中的CharField 2.1.0。也许有人可以提供更多的细节,但这对我来说是有效的。

相关内容

  • 没有找到相关文章

最新更新