同時に 2 つのオブジェクトを作成しようとしていますが、何らかの理由で 2 番目のオブジェクトのフィールドが空白になっています。
モデルは次のとおりです。
Users: id, name, last, email, password ...
Locations: address, longitude, latitude.
関係は次のとおりです。
User has_many location
Location belongs_to users
イベント コントローラの作成方法:
def create
@event = current_users.events.build(params[:event])
@location = @event.locations.build(params[:location])
@location.longitude = params[:longitude]
@location.latitude = params[:latitude]
respond_to do |format|
if @location.save
@location.longitude = params[:longitude]
@location.latitude = params[:latitude]
if @location.save
if @event.save
format.html { redirect_to @event, notice: 'Event was successfully created.' }
format.json { render json: @event, status: :created, location: @event }
else
format.html { render action: "new" }
format.json { render json: @event.errors, status: :unprocessable_entity }
end
end
end
end
end
そしてフォーム:
<%= f.hidden_field :latitude %>
<%= f.hidden_field :longitude %>
しかし、場所を作成するlongitude
とlatitude
、と が空白になりますが、場所event_id
はいっぱいです。同時に 2 つのオブジェクトを作成するためのより良い方法はありますか?