UEditor
程序员文章站
2022-05-26 21:18:38
...
最近因项目需要研究了下百度的UEditor,有些个人遇到的问题分享下:
1、ueditor.config.js里面需要修改以下地方:
window.UEDITOR_CONFIG = {
//为编辑器实例添加一个路径,这个不能被注释
UEDITOR_HOME_URL: 'http://10.1.1.154:8083/quiz/utf8-jsp/' 这里添加你的服务器目录的地址,本地测试的话可以先添加本地的部署的时候切记要改成服务器地址
// 服务器统一请求接口路径
, serverUrl:"http://10.1.1.154:8083/quiz-mng/common/ue/api" 这里添加你需要上传文件视频、图片的请求地址
//工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的重新定义
, 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', '|',
'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
'insertimage', 'emotion', 'scrawl', 'insertvideo',
]]
2、我用的是jsp的别的版本应该都一样,点开文件夹JSP/config.js
"imageUrlPrefix": "http://10.1.1.154:8083/quiz-mng/common/ue/api", /* 图片访问路径前缀 */
如果你需要上传视频等其他文件的话可以更改下面的URLPrefix
上一篇: Ueditor富文本编辑器使用详解
下一篇: 使用ueditor踩过的坑