0

有没有人能够以嵌套形式使用附加到表单构建器对象的ckeditor gem(https://github.com/galetahub/ckeditor/issues/98)?

宝石文件:

gem 'rails', '3.2.1'
....
gem "nested_form"
gem "ckeditor", "3.7.0.rc3"

我将问题提取到一个非常简单的嵌套表单应用程序中,即

post.rb:

has_many :comments
accepts_nested_attributes_for :comments

所以我尝试使用ckeditor来编辑评论。视图如下所示:

<%= nested_form_for(@post) do |f| %>

<%= f.label :post_content %>

<%= f.text_area :post_content %>
<%= f.fields_for :comments do |cf| %>
<%= cf.cktext_area :comment_content %>
<% end %>
....

评论内容会出现一个普通的文本区域。如果我将表单帖子部分中的“f.text_area”切换为“f.cktext_area”,则帖子内容会出现 ckeditor。

呈现表单时,日志中不会出现任何错误。

我错过了什么吗?

4

1 回答 1

1

您是否生成了 ckeditor 文件:

rails generate ckeditor:models --orm=active_record --backend=paperclip
于 2012-06-29T16:55:57.100 回答