任务42:引入ueditor百度编辑器

Posted pensive

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了任务42:引入ueditor百度编辑器相关的知识,希望对你有一定的参考价值。

1,复制下载到的 ueditor 文件夹到 publicstatic 目录下

2, esourcesviewsAdminArticle  目录下的 add.blade.php  和  edit.blade.php   都在头部引用相关JS  和 在底部增加js控制脚本

@section(‘js_head‘)
    <script src="{{asset(‘static‘)}}/ueditor/ueditor.config.js"></script>
    <script src="{{asset(‘static‘)}}/ueditor/ueditor.all.min.js"></script>
    <script src="{{asset(‘static‘)}}/ueditor/lang/zh-cn/zh-cn.js"></script>
@endsection
@section(‘js‘)
    <script type="text/javascript">
        //实例化编辑器
        //建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor(‘editor’)就能拿到相关的实例
        UE.getEditor(content,{initialFrameWidth:700,initialFrameHeight:400, toolbars: [[bold, italic, underline, fontborder, strikethrough, superscript, subscript,
                removeformat, formatmatch, autotypeset, blockquote, pasteplain, |, forecolor, backcolor, insertorderedlist, insertunorderedlist,
                selectall, cleardoc,insertimage,edittable]]});
    </script>
@endsection

注:

使用 @section(‘js_head 需事先在公共模板 main.blade.php上头部 指定位置 添加 @yield(‘js_head‘) 代码

使用 @section(‘js‘)  需事先在公共模板 main.blade.php上底部 指定位置 添加 @yield(‘js‘) 代码

3,浏览器上 访问 http://laravel.pensive.top/admin/article/add   或 http://laravel.pensive.top/admin/article/edit/1  引入ueditor 后的效果如下

技术图片

END

 

以上是关于任务42:引入ueditor百度编辑器的主要内容,如果未能解决你的问题,请参考以下文章

php如何引入百度Ueditor富文本编辑器

thinkphp5.0引入百度编辑器

百度在线编辑器ueditor的使用

百度文本编辑器

PHP如何搭建百度Ueditor富文本编辑器

PHP如何搭建百度Ueditor富文本编辑器