Django怎样实现KindEditor的基本使用和文件操作

在博客系统中发表文章和回复评论用到的就是kindeditor框。

在实现之前我们要下载kindeditor

可以在github地址上下载:https://github.com/kindsoft/kindeditor

我们简单的实现下看下效果。

urls.py

from django.contrib import admin
from django.urls import path,re_path
from app import views
urlpatterns = [
    path('admin/', admin.site.urls),
    path('kind/',views.kind),
]

views.py

def kind(request):
    return render(request,'kind.html')

kind.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <div style="width: 500px;margin:0 auto;">
        <textarea id="content"></textarea>
    </div>

    <script src="/static/jquery-1.12.4.js"></script>
    <script src="/static/kindeditor-master/kindeditor-all.js"></script>
    <script>
        $(function (){
            KindEditor.create('#content',{})
        })
    </script>
</body>
</html>

效果:

这样我们便可以看到这个效果的实现。

我们可以查看文档:http://kindeditor.net/docs/option.html

在这里面我们可以了解到完整的初始化参数。

<script src="/static/jquery-1.12.4.js"></script>
    <script src="/static/kindeditor-master/kindeditor-all.js"></script>
    <script>
        KindEditor.create('#content',{
                items:[
        'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
        'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
        'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
        'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
        'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
        'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage',
        'flash', 'media', 'insertfile', 'table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
        'anchor', 'link', 'unlink', '|', 'about'
]
            })

    </script>

items:就是为了配置工具台,不让工具全部使用,想要留下来显示的就写入到items中。   数据类型: Array

还有下面一些数值看这些文档:http://kindeditor.net/docs/option.html#id99

在查询文档时,就可以快速完成想要搭建的工具。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值