我试图同时创建两个对象,但由于某种原因,我的第二个对象的字段是空白的。
这些型号是:
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 %>
但是,当我创建我的位置时,我会因为 and 而变得空白,但我的位置却被longitude
填满latitude
了event_id
。有没有更好的方法同时创建两个对象?