我有这样的索引;
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'时,它不起作用。