3

我正在尝试在我的 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 请求。在视图中,我想获取其抽象字段包含通过 HttpPost 发送的搜索文本的所有 Article 对象。在我看来,我正在获取搜索文本,然后尝试获取类似的模型

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

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

articles = SearchQuerySet().all()

它将返回本地测试数据库中的 12 个模型对象。但是,过滤器函数不返回任何结果。我想要做的是相当于

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

有什么建议么?谢谢

4

1 回答 1

3

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

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()

在 django-haystack 2.1.0 中对 index.CharField 类型的属性使用 .filter() 有问题。也许有人可以提供更多细节,但这对我有用。

于 2013-12-11T17:26:10.993 回答