1

我尝试在 Django 上使用 Haystack 创建我的 SearchIndex 时遇到了一些问题,但我不知道该怎么做。

这是我的两个模型

# Meta: stores meta data about tutorials (category, title)
class Meta(models.Model):
    """
    Database [tutorial.meta]
    """
    mta_title = models.CharField(max_length=TUTORIAL_TITLE_MAX)
    mta_views = models.PositiveIntegerField(default=0)


# Contents: stores the tutorial text content
class Contents(models.Model):
    """
    Database [tutorial.contents]
    """
    tut_id = IdField()
    cnt_body = BBCodeTextField()

现在我想将我的 SearchIndex 建立在以下 3 个字段上:mta_title、mta_views 和 cnt_body。这是我当前的搜索索引:

from haystack import indexes
from tutorial.models import Meta as TutorialMeta
from account.models import Profile as UserProfile


class TutorialMetaIndex(indexes.SearchIndex, indexes.Indexable):
    text = indexes.CharField(document=True, use_template=True)
    title = indexes.CharField(model_attr='mta_title')
    views = indexes.CharField(model_attr='mta_views')
    # Haystack reserves the content field names for internal use
    cnt_body = indexes.CharField()

    def get_model(self):
        return TutorialMeta

    def index_queryset(self, using=None):
        """Used when the entire index for model is updated."""
        return self.get_model().objects.all()

    def prepare_cnt_body(self, obj):
        ????

在这个问题上看到过,答案是创建一个 prepare_cnt_body。但我不知道我应该返回什么。

谢谢大家。

4

2 回答 2

1

谢谢你,奥雷亚教派,

但这是我使用简单准备功能的解决方案:

class TutorialIndex(indexes.SearchIndex, indexes.Indexable):
    """
    Index the tutorials
    """
    text = indexes.CharField(document=True, use_template=True)
    tut_id = indexes.IntegerField(model_attr='tut_id')
    cnt_body = indexes.CharField(model_attr='cnt_body')
    mta_title = indexes.CharField()
    mta_views = indexes.CharField()

    def get_model(self):
        """
        Return the current model
        """
        return TutorialContents

    def get_updated_field(self):
        """
        Return the update date tracking field
        """
        return "cnt_date"

    def index_queryset(self, using=None):
        """
        Used when the entire index for model is updated.
        """
        return self.get_model().objects.all()

    def prepare(self, object):
        """
        Prepare the search data
        """
        self.prepared_data = super(TutorialIndex, self).prepare(object)

        # Retrieve the tutorial metas and return the prepared data
        meta = get_tutorial_meta(id=object.tut_id)
        self.prepared_data['mta_title'] = meta.mta_title
        self.prepared_data['mta_views'] = meta.mta_views

        return self.prepared_data
于 2013-09-26T14:04:01.230 回答
0

无需“准备”。只需使用您在“文本”字段中引用的模板。在您的应用程序“myapp”中,创建文件 templates/search/indexes/myapp/tutorialmeta_text.txt。在此文件中,使用标准 Django 模板语言模型引用创建以下条目,例如:

{{object.mta_title}}
{{object.mta_views}}
{{object.contents.cnt_body}}

然后,您需要使用新模板 (./manage.py rebuild_index) 重建索引。这将对每个对象的三个引用字段中的每一个进行索引。使用此方法,您还可以从 SearchIndex 类以及“prepare”方法中省略“title”、“views”和“cnt_body”字段。

于 2013-09-22T02:18:47.367 回答