我在我的Rails 4.1.6应用程序上配置了ckeditor gem。我已经覆盖了Ckeditor的config.js
,因为我在assets / ckeditor文件夹中创建了config.js文件。还在ckeditor.rb
config.asset_path = "/assets/ckeditor/"
在我的application.js中,我添加了以下代码:
#= require ckeditor/init
#= require ckeditor/config
但仍然没有覆盖config.js文件。它没有加载重写的config.js文件。
请帮我找出问题?
答案 0 :(得分:3)
如果你现在没有解决这个问题,我也有类似的情况。
首先,检查http://serveraddress/assets/ckeditor/config.js
如果您获得了一个示例配置文件,则在预编译后删除生产服务器中的/public/assets/ckeditor/config.js,然后重新启动应用程序。它对我有用。