未初始化的常量 Ckeditor::PLUGIN_CONTROLLER_PATH
我尝试在我的应用程序中使用 ckeditor。我按照说明如何安装它,但是当我来到这一步时
$rails 生成 ckeditor:base
我收到此错误消息,未初始化常量 Ckeditor::PLUGIN_CONTROLLER_PATH,但我不知道如何解决它。有谁知道如何解决它?请。
I've try to use ckeditor in my apps. I followed instruction how to install it, but when I came to this step
$ rails generate ckeditor:base
I got this error message, uninitialized constant Ckeditor::PLUGIN_CONTROLLER_PATH, and I didn't know to solve it. Does any body know how to solve it? please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你的routes.rb 中有一些问题如果你使用的是Rails 3...我也遇到了同样的问题并解决了它。
如果您使用的是 Rails 3,则给出
gem 文件中的
I think there is some issue in your routes.rb If you are using Rails 3... I faced the same and solved it.
If you are using Rails 3 then give
inside in gem file and run 'bundle install'
现在你想要:
gem 'ckeditor', :git => 'https://github.com/galetahub/ckeditor'
Rails 生成 ckeditor:install
这适用于 Rails 3.1
Nowadays you want to:
gem 'ckeditor', :git => 'https://github.com/galetahub/ckeditor'
rails generate ckeditor:install
This works for Rails 3.1