如果django4使用haystack,会提示找不到ungettext()这个方法,由于django4里面这个方法已经改名叫ngettext(),所以把haystack的utils文件夹里面的3个ungettext改为ngettext就可以了。
另外一个就是建立索引数据的时候,如果写错了,就会报AttributeError:
AttributeError: 'function' object has no attribute 'objects'
原因是因为漏加方法的括号了。最后要返回模型的索引数据的时候一定要按下图的正确写法来写,Python方法一定要带括号,属性不用带括号,如果搞混了,一定会报错:
class GoodsSKUIndex(indexes.SearchIndex, indexes.Indexable):
"""对于某个类的某些数据建立索引"""
# document=True说名变量是索引字段,use_template=True表示根据模型字段建立索引
text = indexes.CharField(document=True, use_template=True)
def get_model(self):
"""返回模型类"""
return GoodsSKU
def index_queryset(self, using=None):
"""建立索引数据,all表示对模型里面的所有数据建立索引"""
return self.get_model().objects.all()
# return self.get_model.objects.all() # 错误写法
return self.get_model().objects.all() # 正确写法