大家好,我在rails中有一个_form,它很好用。
我必须在我这样做的一个字段中包含一个 TinyMce,现在我有了这个......
= form_for @idea do |f|
- if @idea.errors.any?
#error_explanation
%h2= "#{pluralize(@idea.errors.count, "error")} prohibited this idea from being saved:"
%ul
- @idea.errors.full_messages.each do |msg|
%li= msg
.field
= f.label :name
= f.text_field :name, :required => true
.field
= f.label :description
= f.text_area :description, :class => "tinymce", :cols=>"25", :rows=>"5", :required => true
= tinymce
现在的问题,如果我使用 required => true,并且使用 tinymce 选项不保存表单,因为表单认为该字段为空,但不要显示任何错误,也不要保存。
任何想法,