我有一个与这篇文章非常相似的问题(不太确定是否完全相同):
^^您可能会注意到,没有发布解决方案。
我为我们大楼的网络设置了一张地图。它设置为地板=>开关,开关=>插孔。每个只嵌套一次。
问题出在我的切换编辑/更新方法中。当我单击开关的编辑按钮时,它会将我重定向到正确的 url (.../switch/1/edit),但我立即注意到表单不正确。而不是按钮说“更新开关”,它说“创建开关”,这正是发生的事情。创建了一个新开关,而不是更新我要更新的开关。
这是相关代码。如果你还想看什么,请告诉我。
...app/views/switches/_form.html.erb:
<%= form_for([@floor, @switch]) do |f| %>
<% if @switch.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@switch.errors.count, "error") %> prohibited this switch from being saved:</h2>
<ul>
<% @switch.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :title %><br />
<%= f.text_field :title %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
...应用程序/控制器/switches_controller.rb:
class SwitchesController < ApplicationController
def create
@floor = Floor.find(params[:floor_id])
@switch = @floor.switches.create(params[:switch])
redirect_to(@floor)
end
def destroy
@floor = Floor.find(params[:floor_id])
@switch = @floor.switches.find(params[:id])
@switch.destroy
redirect_to(@floor)
end
def show
@floor = Floor.find(params[:floor_id])
@switch = @floor.switches.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render :json => @switch }
end
end
def edit
@floor = Floor.find(params[:floor_id])
@switch = @floor.switches.find(params[:id])
end
def update
@floor = Floor.find(params[:id])
@switch = @floor.switches.find(params[:id])
respond_to do |format|
if @switch.update_attributes(params[:switch])
format.html { redirect_to @switch, :notice => 'Floor was successfully updated.' }
format.json { head :no_content }
else
format.html { render :action => "edit" }
format.json { render :json => @switch.errors, :status => :unprocessable_entity }
end
end
end
end
任何人都可以帮助弄清楚为什么它会使用 create 方法而不是 update 吗?谢谢!