routes.rb文件:
get "dcrelations/create"
get "dcrelations/destroy"
resources :dcrelations
match 'derelations/create' => 'dcrelations#create'
match 'derelations/destroy' => 'dcrelations#destroy'
表单文件:
<%= form_tag(:controller => "dcrelations", :action => "create", :method => "post") do %>
<div class="field">
<%= hidden_field_tag(:clinic_id, @clinic.clinic_id) %>
<%= label_tag(:doctor_id, "doctor_id: ") %><br />
<%= number_field_tag(:doctor_id) %>
</div>
<%= submit_tag("Add Doctor") %>
<% end %>
渲染表单文件:
<%= render 'shared/dcrelation_form' %>
控制器文件:
def create
@dcrelation = Dcrelation.new(params[:clinic_id],params[:doctor_id])
if @dcrelation.save
flash[:success] = "doctor added!"
redirect_to root_url
else
render 'clinic/show'
end
respond_to do |format|
format.html # show.html.erb
format.json { render json: @clinic }
end
end
错误页面
Routing Error
No route matches [POST] "/dcrelations/create"
Try running rake routes for more information on available routes.
rake routes
dcrelations_create GET /dcrelations/create(.:format) dcrelations#create
dcrelations_destroy GET /dcrelations/destroy(.:format) dcrelations#destroy
dcrelations GET /dcrelations(.:format) dcrelations#index
POST /dcrelations(.:format) dcrelations#create
new_dcrelation GET /dcrelations/new(.:format) dcrelations#new
edit_dcrelation GET /dcrelations/:id/edit(.:format) dcrelations#edit
dcrelation GET /dcrelations/:id(.:format) dcrelations#show
PUT /dcrelations/:id(.:format) dcrelations#update
DELETE /dcrelations/:id(.:format) dcrelations#destroy
root / onedoc#home
create /create(.:format) dcrelations#create
destroy /destroy(.:format) dcrelations#destroy
伙计们,我只想使用form_tag来更新数据库。
我被这个错误所困扰,并且一直在寻找几个小时。
感谢您的所有帮助!!!!!
答案 0 :(得分:2)
从您的form_tag声明中删除action => :create
。
根据你的raked路线,你有唯一一个POST来解决dcrelations #create的路径是URI /dcrelations(.:format)