只上传图片
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
网友评论