我开始将 simple_form 用于 rails 应用程序,并且在转换我的一些表单时,我遇到了一个有两个正在使用的模型的模型,一种嵌入式表单。这可以使用 simple_form 吗?
<% simple_form_for :topic, :url => forum_topics_path do |t| %>
<%= t.input :name, :label => 'Topic' %></p>
<p>First Post:<br/></p>
Title: <%= text_field :post, :title %> <--- this is where i start having problems
Body: <%= text_area :post, :body %>
<%= t.submit 'Save' %>
谢谢