我想使用ckeditor 5ckfinder插件上传文件或图像。
我使用此link逐步设置ckeditor和插件。
我可以运行ckeditor并在ckfinder上看到ckeditor图标,但是单击该图标将无法打开模态,并且错误是“window.CKFinder is undefined”。
请帮助我解决这个问题。

<script src="../build/ckeditor.js"></script>
<script>
    ClassicEditor.create( document.querySelector( '#editor' ),{
    // Enable the CKFinder button in the toolbar.
    toolbar: [ 'ckfinder' ]
} )
    .then( editor => {
        window.editor = editor;
    } )
    .catch( err => {
        console.error( err.stack );
    } );
</script>

最佳答案

我遇到了同样的问题,并包含以下脚本,现在一切正常。

<script src="https://ckeditor.com/apps/ckfinder/3.4.5/ckfinder.js"></script>


javascript - 如何修复window.CKFinder未定义-LMLPHP

您还可以检查以下链接:
https://github.com/ckeditor/ckeditor5-react/issues/86

关于javascript - 如何修复window.CKFinder未定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57061976/

10-15 14:59