tineMCE 踩坑:images_upload_handler

Posted foxcharon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tineMCE 踩坑:images_upload_handler相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

C语言入门必做踩坑题《篇六》

C语言入门必做踩坑题《篇六》

Laya踩坑002_Mac编译后报错file://跨域问题

caffe_ssd_踩坑

Laya踩坑003_所谓的vsCode调试/f5调试

pycharm+PyQt5+python最新开发环境配置,踩坑过程详解