美文网首页
文件上传CKFinder

文件上传CKFinder

作者: sen_coder | 来源:发表于2020-06-25 10:32 被阅读0次
    只上传图片
      ClassicEditor
        .create( document.querySelector( '#editor' ), {
            plugins: [ CKFinder, ... ],
    
            // Enable the "Insert image" button in the toolbar.
            toolbar: [ 'imageUpload', ... ],
    
            ckfinder: {
                // Upload the images to the server using the CKFinder QuickUpload command.
                uploadUrl: '上传图片后台路径'
            }
        } )
        .then( ... )
        .catch( ... );
    
    包含图片管理
    ClassicEditor
       .create( document.querySelector( '#editor' ), {
           plugins: [ CKFinder, ... ],
           toolbar: [ 'ckfinder', 'imageUpload' ... ], // Depending on your preference.
           ckfinder: {
               // Feature configuration.
           }
       } )
       .then( ... )
       .catch( ... );
    

    详情见CKEditor

    相关文章

      网友评论

          本文标题:文件上传CKFinder

          本文链接:https://www.haomeiwen.com/subject/xgfsfktx.html