码迷,mamicode.com
首页 > 其他好文 > 详细

tineMCE 踩坑:images_upload_handler

时间:2018-09-27 00:03:45      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:file   报错   data   ext   turn   error   nbsp   host   var   

tineMCE 的官方示例提供了前端上传图片方法 images_upload_handler 的写法。

但官方写的有点问题,上传会报错。

不过修改也很简单:

images_upload_handler: function (blobInfo, success, failure) {
    var xhr, formData;

    xhr = new XMLHttpRequest();
    xhr.withCredentials = false;
    xhr.open(‘POST‘, ‘http://localhost/oasis_publish_test_php/index.php/upload/upImg‘);

    xhr.onload = function() {
      var json;

      if (xhr.status < 200 || xhr.status >= 300) {
        failure(‘HTTP Error: ‘ + xhr.status);
        return;
      }

      json = JSON.parse(xhr.responseText);

      if (!json || typeof json.location != ‘string‘) {
        failure(‘Invalid JSON: ‘ + xhr.responseText);
        return;
      }

      success(json.location);
    };

    formData = new FormData();
    formData.append(‘file‘, blobInfo.blob());

    xhr.send(formData);
  }

标红的部分就是修改的部分。

tineMCE 踩坑:images_upload_handler

标签:file   报错   data   ext   turn   error   nbsp   host   var   

原文地址:https://www.cnblogs.com/foxcharon/p/9710629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!