我正在尝试使用django-haystack
在我的Django应用中嵌入elasticsearch。我正在尝试实现用户搜索。我的用户模型是:
class MyUser(AbstractBaseUser):
username = models.CharField(max_length=255, unique=True)
name = models.CharField(max_length=63, blank=True)
email = models.EmailField(blank=True, unique=True)
status = models.CharField(max_length=255, blank=True, null=True)
is_staff = models.BooleanField(default=False)
is_active = models.BooleanField(default=True)
joined = models.DateTimeField(auto_now_add=True, null=True)
现在,我想搜索name
和username
字段。我创建了以下search_indexes.py
:
class UserIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.EdgeNgramField(document=True, model_attr='name')
username = indexes.CharField(model_attr='username')
def get_model(self):
return MyUser
def get_updated_field(self):
return "joined"
但是,当我执行搜索时,我只会得到与name
字段匹配的结果。我在这做错了什么?还有其他方法可以做到这一点吗?
提前致谢。
答案 0 :(得分:4)
django-haystack的工作方式,document=True
字段内的数据用于常规搜索,任何其他字段用于单独过滤。因此,在您的情况下,搜索只会使用name
字段。要解决此问题,您需要使用一个模板来指定搜索中要使用的所有字段。首先,使用:
text = indexes.EdgeNgramField(document=True, use_template=True)
然后,您需要在名为search/indexes/myapp/myuser_text.txt
的模板目录中创建一个新模板,并将以下内容放在:
{{ object.username }}
{{ object.name }}
请参阅http://django-haystack.readthedocs.org/en/latest/tutorial.html#handling-data以获取完整参考资料