我正在使用ckeditor gem。https://github.com/galetahub/ckeditor
当我创建一个名为config.js
under的文件时assets/javascripts/ckeditor
,
我收到以下错误:
Cannot call method 'split' of undefined
gem 提供了一个缩小版本,因此我无法获得导致问题的确切陈述。但在检查时出现以下行:
a[g].$.styleSheet.cssText=a[g].$.styleSheet.cssText+f:a[g].$.innerHTML=a[g].$.innerHTML+f}}var d={};CKEDITOR.skin={path:b,loadPart:function(c,d){CKEDITOR.skin.name!=CKEDITOR.skinName.split(",")[0]?CKEDITOR.scriptLoader.load(CKEDITOR.getUrl(b()+"skin.js"),function(){a(c,d)}):a(c,d)},getPath:function(a){return CKEDITOR.getUrl(c(a))},icons:{},addIcon:function(a,b,c){a=a.toLowerCase();this.icons[a]||(this.icons[a]={path:b,offset:c||0})},getIconStyle:function(a,b,c,d){var e;if(a){a=a.toLowerCase();b&&
Uncaught TypeError: Cannot call method 'split' of undefined
如果我删除 config.js 的内容,我不会收到任何错误。
编辑:
我使用了以下生成器:
rails generate ckeditor:install --orm=active_record --backend=paperclip
并且:(当我按下图像按钮时,我根本没有得到上传按钮。之前它工作得很好!出了什么问题?