我在 rails 6 应用程序的表单中使用了多个富文本字段,但只有第一个字段存储在数据库中,其余字段根本没有显示在数据库中。
module.rb
has_rich_text :content
has_rich_text :references
has_rich_text :footnotes
_form.html.erb
f.rich_text_area :content
f.rich_text_area :references
f.rich_text_area :footnotes
controller.rb
params.require... :content, :references, :footnotes...