我想创建一个音乐会。这场音乐会有许多信息和地方。
在第一个视图中。我有一个表格来创建一个新的音乐会(开始时间,乐队演奏,完成时间,价格)。在第二个视图中,我有一个存储在DB中的地方表。用户必须从现有位置选择一个位置。
然后,我将在数据库中存储包含信息+ concert_id的Concert对象。我的问题是我不知道该怎么做。
编辑: 这就是我想做的事情
addCondition
所以,我用一个提交按钮创建了new_concert.html.erb,一旦点击,就会执行创建动作 create动作定义如下
concert form -> click submit -> redirect to locations dataTable
and choose one location-> get the location_id and add it to my instance of concert -> click submit
-> save in the database
这必须将我重定向到包含位置dataTable的choose_concert_path.html.erb,如下所示。这导致我出现问题,因为concert_id是nil.Indeed音乐会还没有保存在数据库中。
def create
@concert =current_user.concerts.build(concerts_params)
respond_to do |format|
format.html { redirect_to choose_location_path(@concert),
notice: 'Vous participez a ce concert.' }
end
end
当选择位置时,我必须单击一个按钮,将我的concert_params + location_id保存在数据库中。 总之,我的两个问题是:
<div class="datatable">
<table class="table table-bordered table-hover"data-provides="rowlink">
<thead>
<tr>
<th align="center">Nom</th>
<th align="center">Type</th>
<th align="center">Pays</th>
<th align="center">Ville </th>
<th align="center">Quartier</th>
<th align="center">Détail</th>
</tr>
</thead>
<tbody>
<% Location.all.each do |location| %>
<tr >
<td align="center">
<%= location.name %></a></td>
<% if location.type==true %>
<td align="center">
hall
</td>
<% else %>
<td align="center">
stadium
</td>
<%end%>
<td align="center"><%= location.country %></td>
<td align="center"><%= location.city %></td>
<td align="center"><%= location.adress%></td>
<td align="center"><%=link_to "<i class='icon-link'></i> Choisir".html_safe, choose_location_path(location) ,method: :put, class: "btn btn-sm btn-success" %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
我希望这次我能更清楚地解释一下。
答案 0 :(得分:0)
这是一个非常广泛的问题。我知道你要求两个视图,但我认为单选按钮是这个问题的最佳解决方案,所以我的例子将在一个视图中。您可以应用此选项以使用多个视图。 这是一个带单选按钮的表单:
$work_type === WorkTypes::Study
concert_location只是一个字符串,它将在单选按钮的字符串参数中获取您给出的值。如果需要,您也可以将图像等放在单选按钮中。如果您有任何其他问题,请告诉我。
编辑*我认为我没有充分回答,因为你特意请求了两个观点,所以你走了。
concerts_controller.rb:
<%= form_for @concert do |form| %>
<!--- insert the concert fields up here --->
<p>Concert Location</p>
<%= form.radio_button :career_goal, "location_one" %>
<%= form.label :concert_location, "Location One", value: "location_one" %></br>
<!--- add the rest of your options the same way as the above two lines--->
new.html.erb:
class ConcertsController < ApplicationController
def new
@concert = Concert.new
end
def create
@concert = Concert.new(concert_params)
if @concert.save
redirect_to concert_location_path(@concert.id)
else
#whatever you want to do upon failure
end
end
def locations_list
@concert = Concert.find_by_id(params[:id])
@locations = Locations.all
end
def add_location
@concert = Concert.find_by_id(params[:id])
if @concert.update_attributes(concert_location_params)
#wherever you want to take them upon success
else
#whatever you want to do on failure
end
end
private
def concert_params
params.require(:concert).permit(:first_param,...)
#don't add concert_location here
end
def concert_location_params
params.require(:concert).permit(:concert_location)
end
end
concert_list.html.erb:
<%= form_for @concert do |form| %>
<!--- concert fields except for location --->
<%= form.submit %>
<% end %>
将此添加到您的routes.rb:
<%= form_for @concert, :url => add_location_path(@concert.id), :method => "patch" do |form| %>
<p>Concert Location</p>
<%= @locations.each |location| do %>
<%= form.radio_button :concert_location, location.id %>
<%= form.label :concert_location, Location.name, value: "location.id" %></br>
<% end %>
<%= form.submit %>
<% end %>