如何将django-haystack搜索方面与自定义属性一起使用?

问题描述 投票:2回答:1

我有一个Django-oscar商店,我成功安装了Solr 4.7.2作为搜索引擎。它适用于预定义的属性,例如: upc,title,product_class ...

但过滤其他属性不起作用。

多数民众赞成我的产品目录/ models.py:

class Product(AbstractProduct):
    video_url = models.URLField()
    co2 = models.IntegerField()
    is_public = models.BooleanField()
    test = models.TextField()

在search_indexes.py中,我尝试添加以下内容:

co2 = indexes.IntegerField(model_attr="co2", null=True, indexed=False)

def prepare_co2(self, obj):
        return self.apps.get_model().objects.filter(co2="2")
       # return obj.co2 etc. here I tried a lot of code, but didnt work

我还试图复制这个功能的现成代码。

有谁有想法,怎么做?当我过滤catalogue.products.title它工作正常,但没有与cataolgue.products.co2(我已经充满了自己)。

python django solr django-haystack django-oscar
1个回答
0
投票

您无法从prepare函数中过滤对象,只需指定haystack如何访问对象字段。

from haystack import indexes
import oscar.apps.search.search_indexes as oscar_search_indexes


class ProductIndex(oscar_search_indexes.ProductIndex):
    co2 = indexes.IntegerField(null=False, indexed=True)

    def prepare_co2(self, obj):
        return obj.co2

上面应该有效(一旦你在更新了Solr schema.xml之后重新编写了你的​​产品索引),如果没有,请用你得到的错误或带有样本数据的意外查询行为更新你的问题。

© www.soinside.com 2019 - 2024. All rights reserved.