5

我尝试在 rails4 中创建一个一对多的连接。但是,虽然我没有收到错误,但未存储嵌套属性。

我究竟做错了什么?

车站模型

class Station < ActiveRecord::Base
    has_many :adresses

    accepts_nested_attributes_for :adresses
end

地址模型

    class Adress < ActiveRecord::Base
        belongs_to :station
    end

Station-Controller 类 StationsController < ApplicationController

    def new
        @station = Station.new
        @station.adresses.build
    end

    def create
        @station = Station.new(station_params)
        @station.save
        redirect_to @station
    end

    def index
        @stations = Station.all
    end

private

    def station_params
        params.require(:station).permit(:name, adresses_attributes: [ :url ])
    end

end

站:new.html.erb

<%= form_for :station, url: stations_path do |station| %>
    <p>
        <%= station.label :name %><br />
        <%= station.text_field :name %>
    </p>
    <%= station.fields_for :adresses do |adress| %>
        <div class="field">
            <p>
                <%= adress.label :url %><br />
                <%= adress.text_field :url %>
            </p>
        </div>
    <% end %>
    <p>
        <%= station.submit %>
    </p>
<% end %>

[编辑]
我构建了这个问题的一个最小示例,并在此处将其记录为分步说明:https ://groups.google.com/forum/#!topic/rubyonrails-talk/4RF_CFChua0

4

3 回答 3

11

在 Rails 4 中,您还需要id允许adresses. 请这样做:

def station_params
    params.require(:station).permit(:name, adresses_attributes: [ :url, :id ])
end

我仍在尝试为此找到官方文档:(

于 2013-07-09T23:45:42.767 回答
3

您应该使用form_for @station而不是form_for :station(使用实例而不是符号)。

干杯

于 2013-07-15T07:46:36.857 回答
0

在 StationController 类中,我会这样做:

def create
    @station = Station.new
    @station.update_attributes(station_params)
    redirect_to @station
end

代替 :

def create
    @station = Station.new(station_params)
    @station.save
    redirect_to @station
end
于 2013-07-09T21:33:49.767 回答