首页 > 作文

php用wangeditor3实现图片上传功能

更新时间:2023-04-07 13:37:31 阅读: 评论:0

就在最近,公司让我写一个后台,其中用到了富文本编辑器。自从这个富文本的出现我就慢慢乾淳的进入了一个坑,起初不知道用什么编辑器好,看了好多好多,最后选择了。这个wangeditor3。个人认为这个富文本很干净,还很多功能。

选择了编辑器我就慢慢的走进了坑的道理,一步一个坎。接下来就是看代码了。

这个是wangeditor,选择一个自己喜欢的版本。我用的是3的

https://github.com/wangfupeng1988/wangeditor/releas

定义一个富文本编辑器

然后富文本就出现了

然后就是图片上传代码首先要在js中配置点东西。

<script>    var e = window.wangeditor;    var editor = new e(‘#elm1‘);    editor.customconfig.uploadimgrver = "uploads.php"; // 上传图片到服务器    editor.customconfig.uploadfilename = "file"; 请假条下载  //文件名称 也就是你在后台接受的 参数值    editor.customconfig.uploadimgheaders = {  //header头信息       ‘accept‘: ‘text/x-json‘    }    // 将图片大小限制为 3m    editor.customconfig.uploadimgmaxsize = 3 * 1024 * 1024  //默认为5m    editor.customconfig.uploadimgshowba64 = fal;  // 使用 ba64 保存图片    // editor.customconfig.customalert = function (info) { //自己设置alert错误信息    //   // info 是需要提示的内容    //   alert(‘自定义提示:‘ + ‘图片上传失败,请重新上传‘)    // };    editor.customconfig.debug = true; //是否开启debug 默认为fal 建议开启 可以看到错误    // editor.customconfig.debug = location.href.indexof(‘wangeditor_debug_mode=1‘) > 0; // 同上 二选一    //图片在编辑器中回显    editor.customconfig.uploadimghooks = {       error: function (xhr, editor) {        alert("2:" + xhr + "请查看你的json格式是否正确,图片并没有上传");        // 图片上传出错时触发 如果是这块报错夏有乔木雅望天堂结局 就说明文件没有上传上去,直接看自己的json信息。是否正确        // xhr 是 xmlhttprequst 对象,editor 是编辑器对象      },      fail: function (xhr, editor, result) {        // 如果在这出现的错误 就说明图片上传成功了 但是没有回显在编辑器中,我在这做的是在原有的2021年的第一场雪json 中添加了        // 一个url的key(参数)这个参数在 custominrt也用到        //     平板电脑好吗    alert("1:" + xhr + "请查看你的json格式是否正确,图片上传了,但是并没有回显");      },      success:function(xhr, editor, result){        //成功 不需要alert 当然你可以使用console.log 查看自己的成功json情况         //console.log(result)        // inrtimg(‘/d/file/titlepic/error.html      },      custominrt: function (inrtimg, result, editor) {        //console.log(result);        // 图片上传并返回结果,自定义插入图片的事件(而不是编辑器自动插入图片!!!)        // inrtimg 是插入图片的函数,editor 是编辑器对象,result 是服务器端返回的结果        // 举例:假如上传图片成功后,服务器端返回的是 {url:‘....‘} 这种格式,即可这样插入图片:        inrtimg(result.url);      }    };    editor.customconfig.showlinkimg = true; //是否开启网络图片,默认开启的。    editor.create()  </script>

这些是javascript的配置代码。

详细的php代码在我的git里面有兴趣的可以下载一下~

https://github.com/wjmgg/wangeditor3uploadforphp.git

这样wangeditor3的图片上传就完成了。

以上就是本次介绍的全部知识点内容,感谢大家对www.887551.com的支持。

本文发布于:2023-04-07 13:36:46,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/760830d3a1a1f950487bde06d56c67c0.html

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

本文word下载地址:php用wangeditor3实现图片上传功能.doc

本文 PDF 下载地址:php用wangeditor3实现图片上传功能.pdf

标签:编辑器   图片上传   的是   文本
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图