Ckeditor ';来源';基本编辑器中的按钮未显示

Ckeditor ';来源';基本编辑器中的按钮未显示,ckeditor,Ckeditor,我已下载并安装了4.5.9版的基本软件包,但未显示“源”按钮。这是我的配置文件: CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. // For complete reference see: // http://docs.ckeditor.com/#!/api/CKEDITOR.config // The toolbar g

我已下载并安装了4.5.9版的基本软件包,但未显示“源”按钮。这是我的配置文件:

CKEDITOR.editorConfig = function( config ) {
    // Define changes to default configuration here.
    // For complete reference see:
    // http://docs.ckeditor.com/#!/api/CKEDITOR.config

    // The toolbar groups arrangement, optimized for a single toolbar row.
    config.toolbarGroups = [
        { name: 'document',    groups: [ 'Source', 'mode', 'document', 'doctools' ] },
        { name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
        { name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
        { name: 'forms' },
        { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
        { name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
        { name: 'links' },
        { name: 'insert' },
        { name: 'styles' },
        { name: 'colors' },
        { name: 'tools' },
        { name: 'others' }
    ];

    // The default plugins included in the basic setup define some buttons that
    // are not needed in a basic editor. They are removed here.
    config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Underline,Strike,Subscript,Superscript';

    // Dialog windows are also simplified.
    config.removeDialogTabs = 'link:advanced';
};
谁能告诉我我做错了什么吗


提前感谢。

在基本套餐中不可用,如表中所示。您需要首先将插件(或者如果是用于内联编辑)添加到构建中。如表中所示,基本软件包中没有。

。您需要首先将插件(或者如果是用于内联编辑)添加到构建中。为此。

也许你不应该大写
source
谢谢Matti。可悲的是,这没有任何区别。也许你不应该大写
source
谢谢Matti。可悲的是,这没有任何区别。很高兴听到这个消息。如果它解决了您的问题,请接受该答案,以使其对将来寻找相同问题解决方案的其他用户更有用。谢谢Anna。我第一次使用Stack;我不知道这一切是如何运作的!很高兴听到这个消息。如果它解决了您的问题,请接受该答案,以使其对将来寻找相同问题解决方案的其他用户更有用。谢谢Anna。我第一次使用Stack;我不知道这一切是如何运作的!