首页 > 编程 > PHP > 正文

基于ThinkPHP的在线编辑器调用

2020-03-22 19:33:34
字体:
来源:转载
供稿:网友
  • 开源的在线编辑器有很多,比如FCKEditor,UEditor,Kindeditor等,调用方式也都大同小异

    下面列举UEditor在线编辑器插件在ThinkPHP里面的应用

    1、Ueditor下载地址:http://ueditor.baidu.com/website/download.html(注意编码)

    2、使用ThinkPHP版本为ThinkPHP3.1.2

    先下载Ueditor插件解压放置ThinkPHP项目的根目录并将文件夹名称重命名为ueditor

    如下图:

    编写测试类:

    1 class IndexAction extends Action {2     public function index(){3         $this->display();4     }

    对应映射Html静态页面:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">    <title>Ueditor</title>    <script type="text/javascript" src="__ROOT__/ueditor/ueditor.config.js"></script>     <script type="text/javascript" src="__ROOT__/ueditor/ueditor.all.js"></script>          <script type="text/javascript">            function edit(){                UE.getEditor('content');                }        </script></head><body onload="edit()">    <form action="__URL__/edit" method="post">        标题:<br/>        <input type="text" name="info"/><br/>        内容:<textarea id="content" name="content" style="width:700px;height:300px;"></textarea>        <input type="submit" value="提交"/>    </form></body></html>

    在静态页面HTML用Javascript调用,分别引入ueditor.config.js、ueditor.all.js两个JS文件,可直接用UE.getEditor(参数1,{参数2});进行调用

    参数1:

    需要和下面的TextArea的ID名对应。

    参数2:(非必须)

    一些初始化参数,比如宽度,高度,各种按钮,样式等。

    若不填写此参数,默认下是用TextArea的Style样式的宽高来定义Ueditor

    效果如下图:

    提交表单:

    -------------------------------------------------------------华丽的分割线-------------------------------------------------------------------

    来说下关于参数二,毕竟一般的在线编辑器是不需要那么多功能的,使其简洁。

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">    <title>Ueditor</title>    <script type="text/javascript" src="__ROOT__/ueditor/ueditor.config.js"></script>     <script type="text/javascript" src="__ROOT__/ueditor/ueditor.all.js"></script>          <script type="text/javascript">            function edit(){                UE.getEditor('content',{                  //这里可以选择自己需要的工具按钮名称,此处仅选择如下五个                  toolbars:[['FullScreen', 'Source', 'Undo', 'Redo','bold','test']],                  //focus时自动清空初始化时的内容                  autoClearinitialContent:true,                  //关闭字数统计                  wordCount:false,                  //关闭elementPath                  elementPathEnabled:false,                  //默认的编辑区域高度                  initialFrameHeight:300                  //更多其他参数,请参考ueditor.config.js中的配置项              });              }        </script></head><body onload="edit()">    <form action="__URL__/edit" method="post">        标题:<br/>        <input type="text" name="info"/><br/>        内容:<textarea id="content" name="content" style="width:700px;height:300px;"></textarea>        <input type="submit" value="提交"/>    </form></body></html>

    关于参数二的toolbars在开发文档ueditor.config.js中有给出:

    toolbars: [[            'fullscreen', 'source', '|', 'undo', 'redo', '|',            'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',            'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',            'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',            'directionalityltr', 'directionalityrtl', 'indent', '|',            'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',            'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',            'simpleupload', 'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe', 'insertcode', 'webapp', 'pagebreak', 'template', 'background', '|',            'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',            'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', 'charts', '|',            'print', 'preview', 'searchreplace', 'help', 'drafts'        ]]

    按照个人需求填写所需就成

    上图代码效果图:

      

    PHP编程

    郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表