How to do CKEditor 5 Image Uploading?

前端 未结 6 1713
故里飘歌
故里飘歌 2020-12-13 11:12
ClassicEditor
    .create( editorElement, {
        ckfinder: {
            uploadUrl: \'my_server_url\'
        }
    } )
    .then( ... )
    .catch( ... );
         


        
6条回答
  •  无人及你
    2020-12-13 12:13

    The ckfinder.uploadUrl property configures the CKFinderUploadAdapter plugin. This plugin is responsible for communication with the CKFinder's server-side connector.

    So, in other words, your server should run the CKFinder's server-side connector. This is a proprietary software, so I won't go deeper into how it works.

    If you wish to learn about all ways to configure image upload, please read How to enable image upload support in CKEditor 5?.

提交回复
热议问题