gpt4 book ai didi

javascript - 类型错误 : c[a] is undefined in CKEditor

转载 作者:行者123 更新时间:2023-11-29 10:05:53 25 4
gpt4 key购买 nike

我正在使用 $.getScript 加载 ckeditor.js 文件,在回调中我正在启动 CKEditor。但它显示错误 TypeError: c[a] is undefined。这是我的代码。我该如何解决这个问题?

$.getScript("ckeditor.js", function (data, textStatus, jqxhr) {
if (textStatus == 'success' && jqxhr.status == 200) {
CKEDITOR.replace( 'commentBox',
{
toolbar :
[
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Blockquote'] },
{ name: 'insert', items : [ 'Table','HorizontalRule','SpecialChar' ] },

{ name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
{ name: 'colors', items : [ 'TextColor','BGColor' ] }
]
});
}
});

最佳答案

我在类似情况下遇到了同样的错误。

我检查了 Chrome 中的格式化源,发现这是由 Format 插件试图从 CKEDITOR.language 对象加载其标签引起的。

原来我的构建中没有包含 en-gb 并且显然它不会自动回退到直接 en。将英语(英国)添加到构建中更正了这些问题。

关于javascript - 类型错误 : c[a] is undefined in CKEditor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43389167/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com