我尝试在 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。但我不知道我应该返回什么。
谢谢大家。