欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Django—第三方引用

程序员文章站 2022-07-07 08:07:43
索引 一、富文本编辑器 1.1 在Admin中使用 1.2 自定义使用 1.3 显示 二、全文检索 2.1 创建引擎及索引 2.2 使用 三、发送邮件 一、富文本编辑器 借助富文本编辑器,网站的编辑人员能够像使用offfice一样编写出漂亮的、所见即所得的页面。此处以tinymce为例,其它富文本编 ......

索引

        

          1.1 在admin中使用

          

          

        

          

          

        

 

一、富文本编辑器

借助富文本编辑器,网站的编辑人员能够像使用offfice一样编写出漂亮的、所见即所得的页面。此处以tinymce为例,其它富文本编辑器的使用也是类似的。

在虚拟环境中安装包。

pip install django-tinymce

安装完成后,可以使用在admin管理中,也可以自定义表单使用。

示例

1)在项目的settings.py中为installed_apps添加编辑器应用。

installed_apps = (
    ...
    'tinymce',
)

2)在项目的settings.py中添加编辑器配置。

tinymce_default_config = {
    'theme': 'advanced',
    'width': 600,
    'height': 400,
}

3)在项目的urls.py中配置编辑器url。

urlpatterns = [
    ...
    url(r'^tinymce/', include('tinymce.urls')),
]

接下来介绍在admin页面、自定义表单页面的使用方式。

1.1 在admin中使用

1)在booktest/models.py中,定义模型的属性为htmlfield()类型。

from django.db import models
from tinymce.models import htmlfield

class goodsinfo(models.model):
    gcontent=htmlfield()

2)生成迁移文件,执行迁移。

python manage.py makemigrations
python manage.py migrate

3)在booktest/admin.py中注册模型类goodsinfo

from django.contrib import admin
from booktest.models import *
class goodsinfoadmin(admin.modeladmin):
    list_display = ['id']

admin.site.register(goodsinfo,goodsinfoadmin)

4)运行服务器,进入admin后台管理,点击goodsinfo的添加,效果如下图

Django—第三方引用

在编辑器中编辑内容后保存。

 

1.2 自定义使用

1)在booktest/views.py中定义视图editor,用于显示编辑器。

def editor(request):
    return render(request, 'booktest/editor.html')

2)在booktest/urls.py中配置url。

 url(r'^editor/',views.editor),

3)在项目目录下创建静态文件目录如下图:

Django—第三方引用

4)找到安装的tinymce的目录。

5)拷贝tiny_mce_src.js文件、langs文件夹以及themes文件夹拷贝到项目目录下的static/js/目录下。

Django—第三方引用

6)在项目的settings.py中配置静态文件查找路径。

staticfiles_dirs=[
    os.path.join(base_dir,'static'),
]

7)在templates/booktest/目录下创建editor.html模板。

<html>
<head>
    <title>自定义使用tinymce</title>
    <script type="text/javascript" src='/static/js/tiny_mce.js'></script>
    <script type="text/javascript">
        tinymce.init({
            'mode':'textareas',
            'theme':'advanced',
            'width':400,
            'height':100
        });
    </script>
</head>
<body>
<form method="post" action="#">
    <textarea name='gcontent'>哈哈,这是啥呀</textarea>
</form>
</body>
</html>

8)运行服务器,访问网址,效果如下图:

Django—第三方引用

1.3 显示

通过富文本编辑器产生的字符串是包含html的。 在数据库中查询如下图:

Django—第三方引用

在模板中显示字符串时,默认会进行html转义,如果想正常显示需要关闭转义。

在模板中关闭转义

  • 方式一:过滤器safe
  • 方式二:标签autoescape off

1)在booktest/views.py中定义视图show,用于显示富文本编辑器的内容。

from booktest.models import *
...
def show(request):
    goods=goodsinfo.objects.get(pk=1)
    context={'g':goods}
    return render(request,'booktest/show.html',context)

2)在booktest/urls.py中配置url。

 url(r'^show/', views.show),

3)在templates/booktest/目录下创建show.html模板。

<html>
<head>
    <title>展示富文本编辑器内容</title>
</head>
<body>
id:{{g.id}}
<hr>
{%autoescape off%}
{{g.gcontent}}
{%endautoescape%}
<hr>
{{g.gcontent|safe}}
</body>
</html>

4)运行服务器,在浏览器中访问网址,效果如下图:

Django—第三方引用

 

二、全文检索

全文检索不同于特定字段的模糊查询,使用全文检索的效率更高,并且能够对于中文进行分词处理。

  • haystack:全文检索的框架,支持whoosh、solr、xapian、elasticsearc四种全文检索引擎,点击查看。
  • whoosh:纯python编写的全文搜索引擎,虽然性能比不上sphinx、xapian、elasticsearc等,但是无二进制包,程序不会莫名其妙的崩溃,对于小型的站点,whoosh已经足够使用,点击查看。
  • jieba:一款免费的中文分词包,如果觉得不好用可以使用一些收费产品。

1)在环境中依次安装需要的包。

pip install django-haystack
pip install whoosh
pip install jieba

2)修改项目的settings.py文件,安装应用haystack。

installed_apps = (
    ...
    'haystack',
)

3)在项目的settings.py文件中配置搜索引擎。

haystack_connections = {
    'default': {
        #使用whoosh引擎
        'engine': 'haystack.backends.whoosh_cn_backend.whooshengine',
        #索引文件路径
        'path': os.path.join(base_dir, 'whoosh_index'),
    }
}

#当添加、修改、删除数据时,自动生成索引
haystack_signal_processor = 'haystack.signals.realtimesignalprocessor'

4)在项目的urls.py中添加搜索的配置。

 url(r'^search/', include('haystack.urls')),

2.1 创建引擎及索引

1)在booktest目录下创建search_indexes.py文件。

from haystack import indexes
from booktest.models import goodsinfo
#指定对于某个类的某些数据建立索引
class goodsinfoindex(indexes.searchindex, indexes.indexable):
    text = indexes.charfield(document=true, use_template=true)

    def get_model(self):
        return goodsinfo

    def index_queryset(self, using=none):
        return self.get_model().objects.all()

2)在templates目录下创建"search/indexes/booktest/"目录。

Django—第三方引用

3)在上面的目录中创建"goodsinfo_text.txt"文件。

#指定索引的属性
{{object.gcontent}}

4)找到安装的haystack目录,在目录中创建chineseanalyzer.py文件。

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()

5)复制whoosh_backend.py文件,改为如下名称:

  注意:复制出来的文件名,末尾会有一个空格,记得要删除这个空格。

whoosh_cn_backend.py

6)打开复制出来的新文件,引入中文分析类,内部采用jieba分词。

from .chineseanalyzer import chineseanalyzer

7)更改词语分析类。

查找
analyzer=stemminganalyzer()
改为
analyzer=chineseanalyzer()

8)初始化索引数据。

python manage.py rebuild_index

9)按提示输入y后回车,生成索引。

10)索引生成后目录结构如下图:

Django—第三方引用

 

2.2 使用

按照配置,在admin管理中添加数据后,会自动为数据创建索引,可以直接进行搜索,可以先创建一些测试数据。

1)在booktest/views.py中定义视图query。

def query(request):
    return render(request,'booktest/query.html')

2)在booktest/urls.py中配置。

url(r'^query/', views.query),

3)在templates/booktest/目录中创建模板query.html。

  参数q表示搜索内容,传递到模板中的数据为query。

<html>
<head>
    <title>全文检索</title>
</head>
<body>
<form method='get' action="/search/" target="_blank">
    <input type="text" name="q">
    <br>
    <input type="submit" value="查询">
</form>
</body>
</html>

4)自定义搜索结果模板:在templates/search/目录下创建search.html。

搜索结果进行分页,视图向模板中传递的上下文如下:

  • query:搜索关键字
  • page:当前页的page对象
  • paginator:分页paginator对象

视图接收的参数如下:

  • 参数q表示搜索内容,传递到模板中的数据为query
  • 参数page表示当前页码
<html>
<head>
    <title>全文检索--结果页</title>
</head>
<body>
<h1>搜索&nbsp;<b>{{query}}</b>&nbsp;结果如下:</h1>
<ul>
{%for item in page%}
    <li>{{item.object.id}}--{{item.object.gcontent|safe}}</li>
{%empty%}
    <li>啥也没找到</li>
{%endfor%}
</ul>
<hr>
{%for pindex in page.paginator.page_range%}
    {%if pindex == page.number%}
        {{pindex}}&nbsp;&nbsp;
    {%else%}
        <a href="?q={{query}}&amp;page={{pindex}}">{{pindex}}</a>&nbsp;&nbsp;
    {%endif%}
{%endfor%}
</body>
</html>

5)运行服务器,访问网址,进行搜索测试。

 

三、发送邮件

django中内置了邮件发送功能,被定义在django.core.mail模块中。发送邮件需要使用smtp服务器,常用的免费服务器有:163、、qq,下面以163邮件为例。

1)登录设置。

Django—第三方引用

2)在新页面中点击“客户端授权密码”,勾选“开启”,弹出新窗口填写手机验证码。

Django—第三方引用

3)填写授权码。

Django—第三方引用

4)提示开启成功。

5)打开项目的settings.py文件,配置。

email_backend = 'django.core.mail.backends.smtp.emailbackend'
email_host = 'smtp.163.com'
email_port = 25
#发送邮件的邮箱
email_host_user = 'xxxxxx@163.com'
#在邮箱中设置的客户端授权密码
email_host_password = 'xxxxxxx'
#收件人看到的发件人
email_from = 'python<xxxxxx@163.com>'

6)在booktest/views.py文件中新建视图send。

from django.conf import settings
from django.core.mail import send_mail
from django.http import httpresponse
...
def send(request):
    msg='<a href="xxxxxxxxx" target="_blank">点击激活</a>'
    send_mail('注册激活','',settings.email_from,
              ['xxxxxx@163.com'],
              html_message=msg)
    return httpresponse('ok')

7)在booktest/urls.py文件中配置。

    url(r'^send/$',views.send),

8)启动服务器,在浏览器访问地址,去邮箱查看邮件。