1

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. 

耙路线

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 来更新数据库。我被这个错误困住了,已经搜索了几个小时。感谢您的所有帮助!!!!!!!

4

1 回答 1

2

action => :create从您的 form_tag 声明中删除。

根据您的倾斜路线,您可以将 POST 解析为 dcrelations#create 的唯一路线是 URI/dcrelations(.:format)

于 2013-06-09T00:47:07.547 回答