在我的Rails应用中,我希望我的users在销毁自己的帐户之前输入他们的密码。

因此,在我的routes.rb 中,我将此添加到了user资源中:

resources :users do
  member do
    get :terminate
  end
end

在我的 Terminate.html.erb 中,我有以下简单表格:
<%= form_for(:user, :controller => "users", :action => "destroy", :html => {:method => "delete"}) do |f| %>

  <%= f.label :password %><br/>
  <%= f.password_field :password %>

  <%= f.submit "Terminate account" %><br/>

<% end %>

在我的 users_controller.rb 中,我有以下内容:
def terminate
  @user = User.find(params[:id])
  @title = "Terminate your account"
end

def destroy

  # make sure entered password is correct etc...

  @user.destroy
  flash[:success] = "Your account was terminated."
  redirect_to root_path
end

但是,当我单击提交时,出现此错误:
No route matches [DELETE] "/en/users/7/terminate"

我在这里想念什么?

谢谢你的帮助。

最佳答案

这应该工作:

<%= form_for @user, method: :delete do |f| %>

10-04 16:17