百度富⽂本编辑器使⽤(PHP)    // ========================================================================
2-2,PHP  具体使⽤
<script>
//-- 百度富⽂本编辑器 new UE -------------------
var ueditor = null;
$config = { // 配置
serverUrl: '/editor/report.php',
// ⼯具栏,⾃⼰选择增删
toolbars: [[
'fullscreen', 'fontsize', '|', 'undo', 'redo', '|', 'bold', 'italic', 'underline', 'forecolor', 'link',
]],
autoHeightEnabled: false,
};
//--------------------------------------------
// 2-1-1, 获取vue上的数据放到编辑中 ===========================
//-- 百度富⽂本【新增】 -----------------
ueditor = UE.getEditor('txtDesc', $config);
//-----------------------------------------
// 2-1-2, 将编辑器中数据Content()重新赋值到vue中 ========
//-- 百度编辑器获取⽂本框输⼊的值 --------
this.childReport.sDesc = Content();
//----------------------------------------
</script>
// php 提供  action=config的接⼝
$action = $_aRequest['action'] ? trim($_aRequest['action']) : '';
if ($action == 'config') {
exit('{
/* 上传图⽚配置项 */
"imageActionName": "uploadimage", /* 执⾏上传图⽚的action名称 */
"imageFieldName": "upfile", /* 提交的图⽚表单名称 */
"imageMaxSize": 5242880, /* 上传⼤⼩限制,单位B */
"imageAllowFiles": [".png", ".jpg", ".jpeg", ".gif", ".bmp"], /* 上传图⽚格式显⽰ */
"imageCompressEnable": true, /* 是否压缩图⽚,默认是true */
"imageCompressBorder":1600,
"imageInsertAlign":"none",
"imageUrlPrefix":"", /* 图⽚访问路径前缀 */
/* 上传视频配置 */
"videoActionName": "uploadvideo", /* 执⾏上传视频的action名称 */
"videoFieldName": "upfile", /* 提交的视频表单名称 */
"videoUrlPrefix": "", /* 视频访问路径前缀 */
"videoMaxSize": 102400000, /* 上传⼤⼩限制,单位B,默认100MB */
/* 上传视频格式显⽰ */
"videoAllowFiles": [
".flv", ".swf", ".mkv", ".avi", ".rm", ".rmvb", ".mpeg", ".mpg",
asp富文本编辑器
".ogg", ".ogv", ".mov", ".wmv", ".mp4", ".webm", ".mp3", ".wav", ".mid"],
}');
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。