0

我有以下课程

class TableA < ActiveRecord::Base
       has_one :tableb
end
class TableB < < ActiveRecord::Base
       belongs_to :tableA
end

我有一个 tableA/form.html.erb

<%= form_for(@@table) do |f| %>
    <%= f.text_field :tableAColumn %>
    <%= f.text_field :tableAColumn1 %>
    #how can i how this 
    <%= f.text_field :tableBColumn %>
    <%=f.text_field :tableBColumn1 %>
    <%= f.submit %>
<%end>

这样当我点击保存时,记录都可以保存在表 A 和表 B 中。

谢谢

4

1 回答 1

0

我用了accepted_nested_attributes_for

嵌套属性

于 2012-08-12T03:48:09.000 回答