django项目中全文检索,搜索功能的实现

1,安装jieba,whoosh,haystack

pip install XXXX

2,改项目的一些配置

    增加search的模板

django项目中全文检索,搜索功能的实现_第1张图片

search.html如下:




    


{% if query %}
    

搜索结果如下:

{% for result in page.object_list %} {{ result.object.gtitle }}
{% empty %}

啥也没找到

{% endfor %} {% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %}« 上一页{% if page.has_previous %}{% endif %} | {% if page.has_next %}{% endif %}下一页 »{% if page.has_next %}{% endif %}
{% endif %} {% endif %}

在你的应用下添加search_indexes.py;whoosh要求名字要一字不错!

django项目中全文检索,搜索功能的实现_第2张图片

search_indexes.py如下:

#encoding=utf-8

from models import GoodsInfo
from haystack import indexes


class ProductIndex(indexes.SearchIndex, indexes.Indexable):
    text = indexes.CharField(document=True, use_template=True)

    # 对pdname和description字段进行索引
    gtitle = indexes.CharField(model_attr='gtitle')

    gjianjie = indexes.CharField(model_attr='gjianjie')

    def get_model(self):
        return GoodsInfo

    def index_queryset(self, using=None):
        return self.get_model().objects.all()
根级url下

django项目中全文检索,搜索功能的实现_第3张图片

settings.py中添加haystack引擎生成索引,设置每次自动生成索引

django项目中全文检索,搜索功能的实现_第4张图片

说明:复制whoosh_backend.py文件一个拷贝,改名为whoosh_cn_backend.py,并且将下图代码修改

from .ChineseAnalyzer import ChineseAnalyzer 
查找
analyzer=StemmingAnalyzer()
改为
analyzer=ChineseAnalyzer()

我们一般使用中文开发网站,因此需要中文引擎:建立ChineseAnalyzer.py文件

        保存在haystack的安装文件夹下,路径如/home/python/.virtualenvs/django_py2/lib/python2.7/site-packages/haystack/backends

import jieba
from whoosh.analysis import Tokenizer, Token


class ChineseTokenizer(Tokenizer):
    def __call__(self, value, positions=False, chars=False,
                 keeporiginal=False, removestops=True,
                 start_pos=0, start_char=0, mode='', **kwargs):
        t = Token(positions, chars, removestops=removestops, mode=mode,
                  **kwargs)
        seglist = jieba.cut(value, cut_all=True)
        for w in seglist:
            t.original = t.text = w
            t.boost = 1.0
            if positions:
                t.pos = start_pos + value.find(w)
            if chars:
                t.startchar = start_char + value.find(w)
                t.endchar = start_char + value.find(w) + len(w)
            yield t


def ChineseAnalyzer():
    return ChineseTokenizer()

3,生成索引:

python manage.py rebuild_index

我使用的py2.7部署的,正常运行了,希望可以帮到你!

觉得不错的亲,给个赞哈。


你可能感兴趣的:(django项目中全文检索,搜索功能的实现)