我有2个模型事件和任务。
活动有很多任务。和task是事件下的嵌套资源 所以我首先创建一个事件并询问用户要在其中创建多少个任务。
假设我创建了一个事件,用户想在其中创建3个任务。我想分两步而不是一步
成功创建活动后,现在转到/ events / 1 / tasks / new
这里我希望有3个任务名称字段,当用户提交时,应该在Task表中针对事件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
答案 0 :(得分:0)
我认为你通过涉及任务控制器使这变得更复杂。控制器直接在Web应用程序中执行操作。但根据您的描述,您似乎希望在创建事件时自动创建3个任务(如果我正确理解您)。除了输入初始名称之外,这并不真正涉及用户。
让他们提交名称,当事件控制器创建事件时,它应该在那里创建任务。
如果您的嵌套资源更复杂,那么它就是嵌套表单的工作。您可能会从此截屏视频中受益:
答案 1 :(得分:0)
首先,您以这种方式针对一个事件初始化了3个任务
def new
@event=Event.find(params[:event_id])
3.times{@event.tasks.build}
respond_to do |format|
format.html # new.html.erb
format.json { render json: @task }
end
end
然后它肯定会针对1个事件创建3个任务。或者你可以帮助ryan rails cast嵌套表单