ueditor萬能編輯器(百度) 使用

引入編輯器

放入項目中 -> Plugin (與home平級)javascript

定義配置變量 ->config.phpphp

//配置路徑,方便第三方功能包訪問 (自定義名稱)
    'PLUGIN_URL'            => '/Plugin/'

引入js ->x.htmlhtml

<script type="text/javascript" charset="utf-8" src="{$Think.config.PLUGIN_URL}ueditor.config.js">
</script>
<script type="text/javascript"  src="{$Think.config.PLUGIN_URL}ueditor.all.min.js">
</script>
<script type="text/javascript"  src="{$Think.config.PLUGIN_URL}/lang/zh-cn/zh-cn.js">
</script>

 引入編輯器 -> x.htmljava

<tr>
          <td>商品詳細描述</td>
          <td>
                 <textarea name="f_goods_introduce" id="goods_introduce" style="width: 730px;height: 320px;"></textarea>
          </td>
    </tr>

    <script type="text/javascript">
          var ue = UE.getEditor('goods_introduce');
    </script>

增減功能->x.htmlweb

<script type="text/javascript">
    // 在new編輯器的實例時選擇本身須要的重新定義
    UEDITOR_CONFIG.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'
     ]];
</script>

 

數據接收配置

設置上傳路徑 -> Plugin/php/config.jsonjson

"imagePathFormat": "/ueditor/php/upload/image/{yyyy}{mm}{dd}/{time}{rand:6}",
     /* 上傳保存路徑,能夠自定義保存路徑和文件名格式 */
            /* {filename} 會替換成原文件名,配置這項須要注意中文亂碼問題 */
            /* {rand:6} 會替換成隨機數,後面的數字是隨機數的位數 */
            /* {time} 會替換成時間戳 */
            /* {yyyy} 會替換成四位年份 */
            /* {yy} 會替換成兩位年份 */
            /* {mm} 會替換成兩位月份 */
            /* {dd} 會替換成兩位日期 */
            /* {hh} 會替換成兩位小時 */
            /* {ii} 會替換成兩位分鐘 */
            /* {ss} 會替換成兩位秒 */
            /* 非法字符 \ : * ? " < > | */
            /* 具請體看線上文檔: fex.baidu.com/ueditor/#use-format_upload_filename */
相關文章
相關標籤/搜索