0

我正在尝试按照本指南为 CKeditor 创建一个自定义插件。我按照指示创建了文件(myplugin.png、myplugin.js、plugin.js)并添加了

CKEDITOR_CONFIGS = { 'default': { 'extraPlugins': ','.join( [ 'myplugin' ] ), } }

到设置。

但是,当我尝试加载页面时,编辑器没有出现,并且我在控制台中收到以下错误:

获取 http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/myplugin/plugin.js?t=GB8C 404(未找到)

在萤火虫中:

错误:[CKEDITOR.resourceManager.load] 在“ http://127.0.0.1:8000/static/ckeditor/ckeditor/plugins/myplugin/plugin.js?t=GB8C ”中找不到资源名称“myplugin” 。

所有文件都在此处显示的路径中。我可能做错了什么,但我找不到什么。感谢您的帮助,我将不胜感激。这是我的 plugin.js 文件的内容:

CKEDITOR.plugins.add( 'myplugin', {
    icons: 'myplugin',
    init: function( editor ) {
        // Plugin logic goes here...
        editor.addCommand( 'myplugin', new CKEDITOR.dialogCommand( 'mypluginDialog' ) );

        editor.ui.addButton( 'myplugin', {
            label: 'My Plugin',
            command: 'myplugin',
            toolbar: 'insert'
        });
    }
});

干杯

4

1 回答 1

1

我确实发现了这个问题。它与 CKeditor 无关,但与 Django 处理静态文件的方式有关。我已将自定义插件放入静态文件夹中的 ckeditor 文件夹中。这是错误的。STATIC_ROOT 指定的静态文件夹只能通过运行 collectstatic 来填充。以其他方式添加的任何文件都将被忽略。通过将与自定义插件相关的文件放入另一个文件夹中,在 STATICFILES_DIRS 中列出,然后运行 ​​collectstatic,它会被添加到 STATIC_ROOT 文件夹中,然后可以提供服务。我仍然有错误,但与查找资源无关。

于 2017-07-13T15:00:09.820 回答