3

我正在使用 Django-ckeditor-updated 来构建 CMS,并且正在尝试使用 Ckeditor youtube 插件(http://ckeditor.com/addon/youtube),但它没有出现在工具栏中。

我已将插件下载到 ckeditor 插件文件夹,然后编辑其中CKEDITOR_CONFIGSsettings.py显示 youtube 插件,但它无法正常工作。有任何想法吗?

CKEDITOR_CONFIGS = {
'default': {
    'toolbar': 'CMS',
    'toolbar_CMS': [
        {
            'name': 'basicstyles',
            'groups': ['basicstyles', 'cleanup'],
            'items': ['Bold', 'Italic', 'Underline', '-', 'RemoveFormat']
        },
        {
            'name': 'paragraph',
            'groups': ['list', 'indent', 'blocks'],
            'items': ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote']
        },
        {
            'name': 'links',
            'items': ['Link', 'Unlink']
        },
        {
            'name': 'insert',
            'items': ['Image', 'HorizontalRule', 'Table', 'Iframe', ]
        },
        {
            'name': 'colors',
            'items': ['TextColor', 'BGColor']
        },
        {
            'name': 'youtube',
            'items': ['youtube',]
        }
    ],
    'height': 400,
    'width': '100%',
    'allowedContent': True,
    'uiColor': '#f0f0f0',
    'extraPlugins': 'link,iframe,colorbutton,autogrow,youtube',
    'autoGrow_maxHeight': 800,
    'autoGrow_minHeight': 400,
    'removePlugins': 'resize',
    'removeButtons': None,
    'contentsCss': ['/static/css/news_show.css', '/static/css/cke.css'],
},
}
4

2 回答 2

5

这只是一个愚蠢的错误。

    {
        'name': 'youtube',
        'items': ['Youtube',]
    }

youtube 项目中的 y 必须为大写。

于 2014-08-03T18:49:04.967 回答
0

如果您不想在 settings.py 文件中声明,那么您也可以将其添加到 models.py 文件中。参见以下代码:-

class Post(models.Model): 

    content = RichTextUploadingField(blank=True, null=True, extra_plugins= 
    ['codesnippet','youtube',], external_plugin_resources= 
    [('youtube','/static/blog/ckeditor_plugin/youtube/youtube/','plugin.js')],)

当您从http://ckeditor.com/addon/youtube下载 youtube 插件的 zip 文件时,如果在项目的静态文件夹中,则必须解压缩。并将此路径添加到 external_plugin_resources,如上面的代码所示。

于 2020-04-23T14:36:37.403 回答