我想在TinyMCE编辑器中上传图像。我找到了有关in the docs的说明。

这些是我的Javascript设置:

tinymce.init({
       selector: '#about',
       images_upload_url: '/home/profile/about/img',
     });

tinymce.activeEditor.uploadImages(function(success) {
      $.post('/home/profile/about/img', tinymce.activeEditor.getContent()).done(function() {
        console.log("Uploaded images and posted content as an ajax request.");
      });
    });

我创建了以下路线来检查所有设置是否正确
Route::post('/home/profile/about/img', function(){
 return json_encode(['location' => '/storage/app/public/pictures/bestAvatar.png' ]);
});

我希望当我上传图片时,不会上传任何内容,并且会显示图片bestAvatar.png-但是,我收到了一条错误消息:

php - Laravel : TinyMCE Upload Images-LMLPHP

我有什么想念的吗?可能是因为tinymce ajax调用中没有默认的csrf token 吗?

最佳答案

这是我解决的方法:

tinymce.init({
       selector: '#about',
       images_upload_handler: function (blobInfo, success, failure) {
           var xhr, formData;
           xhr = new XMLHttpRequest();
           xhr.withCredentials = false;
           xhr.open('POST', '/home/profile/about/img');
           var token = '{{ csrf_token() }}';
           xhr.setRequestHeader("X-CSRF-Token", token);
           xhr.onload = function() {
               var json;
               if (xhr.status != 200) {
                   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(), blobInfo.filename());
           xhr.send(formData);
       }
     });

关于php - Laravel : TinyMCE Upload Images,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49120997/

10-14 01:59