How to use multiple upload image in ckeditor image2 plugin?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-14 03:32:59

问题


Is it some configuration rule for multiple upload image in CKEditor image2 plugin? My current configuration is:

editor.ckeditor({
    forcePasteAsPlainText: true,
    extraPlugins: 'embed,autoembed,image2',
    image2_alignClasses: [ 'image-align-left', 'image-align-center','image-align-right' ],
    image2_disableResizer: true,
    filebrowserImageBrowseUrl: '/laravel-filemanager?type=Images',
    filebrowserImageUploadUrl: '/laravel-filemanager/upload?type=Images&_token=' + editor.attr('data-token'),
    filebrowserBrowseUrl: '/laravel-filemanager?type=Files',
    filebrowserUploadUrl: '/laravel-filemanager/upload?type=Files&_token=' + editor.attr('data-token')
});

回答1:


Here is a plugin that provides multiple image uploading using ckeditor. It doesn't appear that ckeditor itself supports multiple image uploading.

https://www.martinezdelizarrondo.com/ckplugins/simpleuploads.demo4/



来源:https://stackoverflow.com/questions/43587321/how-to-use-multiple-upload-image-in-ckeditor-image2-plugin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!