django-haystack - 过滤器不适用于值'a',但适用于其他字母和单词

时间:2013-05-09 19:05:15

标签: python django django-haystack

我有这样的索引;

class IndexClass(SearchIndex):
    text = CharField(document=True, use_template=True)
    f1 = CharField(model_attr='f1')

可以说,f1的值为'a','b','c','sdfsdf','sd'(不同长度的字母,单词)。 它能够像这样过滤:

SearchQuerySet.filter(f1='b') (not just 'b', any other except 'a' working)

但是,当我尝试使用字母'a'时,它不起作用。

您认为问题在哪里?

顺便说一下,我尝试多次修改它们的值,当我将其值修改为'a'时,它不起作用。

0 个答案:

没有答案