CKEditor 4:未捕获的TypeError:无法读取null的属性“ langEntries”

iam*_*ake 5 javascript ruby ruby-on-rails ckeditor

我正在将Ruby gem用于CK编辑器(https://github.com/galetahub/ckeditor),但出现此错误:

Uncaught TypeError: Cannot read property 'langEntries' of null
Run Code Online (Sandbox Code Playgroud)

这是代码中发生的地方:

CKEDITOR.plugins.load = CKEDITOR.tools.override(CKEDITOR.plugins.load, function (a) {
var d = {};
return function (b, c, e) {
    var i = {},
        g = function (b) {
            a.call(this, b, function (a) {
                CKEDITOR.tools.extend(i, a);
                var b = [],
                    l;
                for (l in a) {
                    var s = a[l],
                        q = s && s.requires;
                    if (!d[l]) {
                        if (s.icons)
                            for (var u = s.icons.split(","), f = u.length; f--;) CKEDITOR.skin.addIcon(u[f], s.path + "icons/" + (CKEDITOR.env.hidpi && s.hidpi ? "hidpi/" : "") + u[f] + ".png");
                        d[l] = 1
                    }
                    if (q) {
                        q.split && (q = q.split(","));
                        for (s = 0; s < q.length; s++) i[q[s]] || b.push(q[s])
                    }
                }
                if (b.length) g.call(this,
                    b);
                else { *ERRORING HERE*
                    for (l in i) {
                        s = i[l];
                        if (s.onLoad && !s.onLoad._called) {
                            s.onLoad() === false && delete i[l];
                            s.onLoad._called = 1
                        }
                    }
                    c && c.call(e || window, i)
                }
            }, this)
        };
    g.call(this, b)
}
});
CKEDITOR.plugins.setLang = function (a, d, b) {
var c = this.get(a),
    a = c.langEntries || (c.langEntries = {}),
    c = c.lang || (c.lang = []);
c.split && (c = c.split(","));
CKEDITOR.tools.indexOf(c, d) == -1 && c.push(d);
a[d] = b
};
CKEDITOR.ui = function (a) {
 if (a.ui) return a.ui;
this.items = {};
this.instances = {};
this.editor = a;
this._ = {
    handlers: {}
};
return this
};
Run Code Online (Sandbox Code Playgroud)

我正在尝试使用此“简单上传”插件,并且该插件具有多种语言。我的目录结构是这样的: 在此处输入图片说明

这是此错误的CK编辑器文档:

http://docs.ckeditor.com/#!/api/CKEDITOR.plugins-method-setLang

我所有插件的语言文件格式正确,因此很难找到问题所在。

解决任何帮助将不胜感激

编辑:这是英语文件-

CKEDITOR.plugins.setLang( 'simpleuploads', 'en',
{
    // Tooltip for the "add file" toolbar button
    addFile : 'Add a file',
    // Tooltip for the "add image" toolbar button
    addImage: 'Add an image',

    // Shown after the data has been sent to the server and we're waiting for the response
    processing: 'Processing...',

    // File size is over config.simpleuploads_maxFileSize OR the server returns HTTP status 413
    fileTooBig : 'The file is too big, please use a smaller one.',

    // The extension matches one of the blacklisted ones in config.simpleuploads_invalidExtensions
    invalidExtension : 'Invalid file type, please use only valid files.',

    // The extension isn't included in config.simpleuploads_acceptedExtensions
    nonAcceptedExtension: 'The file type is not valid, please use only valid files:\r\n%0',

    // The file isn't an accepted type for images
    nonImageExtension: 'You must select an image',

    // The width of the image is over the allowed maximum
    imageTooWide: 'The image is too wide',

    // The height of the image is over the allowed maximum
    imageTooTall: 'The image is too tall'
});
Run Code Online (Sandbox Code Playgroud)

Mav*_*vis 3

从 application.js 中删除以下行

// = require_tree ./ckeditor
Run Code Online (Sandbox Code Playgroud)

  • 请注意:我必须删除 `//= require_tree .` 因为 `ckeditor` 目录位于 `.` 下。我刚刚将所有自定义脚本移至“app”,并将 require_tree 调用替换为“//= require_tree ./app” (3认同)