我有2個模型的事件和任務。Ruby on Rails更新模型,在單個表單中有多個行
事件有很多任務。並且任務是事件 下的嵌套資源,所以我首先創建一個事件並詢問用戶需要在其中創建多少個任務。
假設我創建了一個事件,並且用戶想要在其中創建3個任務。我想這樣做在2個步驟,而不是一個
成功創建了事件的經過,現在我去/事件/ 1 /任務/新
在這裏我想有3個任務名稱字段,當用戶提交後,應該在工作表中創建對事件1
如何做到這一點
所以在這裏3行是_form.html.erb
<%= form_for [@event, @task] do |f| %>
<% if @task.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@task.errors.count, "error") %> prohibited this task from being saved:</h2>
<ul>
<% @task.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :content %><br />
<%= f.text_field :content %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
任務任務控制器
def new
@event=Event.find(params[:event_id])
@event.task_count do
@choice = @event.tasks.build
end
respond_to do |format|
format.html # new.html.erb
format.json { render json: @task }
end
end
# POST /tasks
# POST /tasks.json
def create
@task = Task.new(params[:task])
respond_to do |format|
if @task.save
format.html { redirect_to @task, notice: 'Task was successfully created.' }
format.json { render json: @task, status: :created, location: @task }
else
format.html { render action: "new" }
format.json { render json: @task.errors, status: :unprocessable_entity }
end
end
end