You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
543 B

#coding=UTF-8
from haystack import indexes
from post.models import *
#注意格式(模型类名+Index)
class PostIndex(indexes.SearchIndex,indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
#给title,content设置索引
title = indexes.NgramField(model_attr='title')
content = indexes.NgramField(model_attr='content')
def get_model(self):
return Post
#设置索引的分词器
def index_queryset(self, using=None):
return self.get_model().objects.order_by('-created')