0

Begginerランニングレール3.2.2、Ruby 1.8.7

ホテル(足場で作成)と施設(空のコントローラー付き)の2つのモデルがあります。1対1の関連付けフィールドとsiplayingフィールドを設定することはできますが、データベースに挿入できないようです。私が得ている:

ActiveModel::MassAssignmentSecurity::Error in HotelsController#create
Can't mass-assign protected attributes: @hotel
app/controllers/hotels_controller.rb:48:in 'new'
app/controllers/hotels_controller.rb:48:in 'create'

->私のモデルは次のとおりです。

class Hotel < ActiveRecord::Base
  has_one :facility, :dependent => :destroy
  accepts_nested_attributes_for :facility, :allow_destroy => true
  attr_accessible :name, :rating, :recommended, :facility_attributes
end

class Facility < ActiveRecord::Base
  belongs_to :hotel
  attr_accessible :concierge, :hotel_id, :room24h
end

私が言ったように、私の施設のコントローラーは空です(ホテルに関連付けられているので、そうなる可能性がありますか?)足場を作成した後のデフォルトは、私のhotel_controllerで、1行だけ追加されています。

 def new
    @hotel = Hotel.new
    @hotel.build_facility  #-->I added this only, I searched and all i found was this

    respond_to do |format|
      format.html # new.html.erb
      format.json { render :json => @hotel }
    end
  end

 def create
    @hotel = Hotel.new(params[:hotel])

    respond_to do |format|
      if @hotel.save
        format.html { redirect_to @hotel, :notice => 'Hotel was successfully created.' }
        format.json { render :json => @hotel, :status => :created, :location => @hotel }
      else
        format.html { render :action => "new" }
        format.json { render :json => @hotel.errors, :status => :unprocessable_entity }
      end
    end
  end

最後に、私のフォームhtmlは次のとおりです。

<%= form_for(@hotel) do |f| %>

<div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>
  <div class="field">
    <%= f.label :rating %><br />
    <%= f.number_field :rating %>
  </div>
  <div class="field">
    <%= f.label :recommended %><br />
    <%= f.check_box :recommended %>
  </div>
  <br />

    <h2>Hotel Facilities</h2>

    <%= f.fields_for :@hotel do |facility_fields| %>
 <div class="field">
    <%= facility_fields.label :room24h, "24h Room Service:" %>
    <%= facility_fields.check_box :room24h %>
  </div>
 <div class="field">
    <%= facility_fields.label "Concierge:" %>
    <%= facility_fields.check_box :concierge %>
  </div>
<%end%>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

作成時に発生するエラーは、質問の始まりです。さらにコードを追加する必要がありますか?hotel_controller?どうなり得るか?また、編集/更新のためにさらにどのようなコードを実行する必要がありますか?

事前に感謝し、申し訳ありませんが、RoRで新しいです。

4

2 に答える 2

1

変化する

attr_accessible :concierge, :hotel_id, :room24h

attr_accessible :concierge, :hotel_id, :room24h, :hotel

Facility

于 2012-04-15T22:29:06.710 に答える
0

かなりの時間が経ちましたが、HABTMとの関係を変えたり、モデルやコントローラーを変えたりして動作しました。それはhas_one関係だったからだと思います。それはNN関係である必要がありました。

于 2012-06-05T14:56:00.763 に答える