目標是移除一個物品;我得到的印象的錯誤是在我的路線:沒有路線匹配[DELETE]「/」;紅寶石在軌道上
Rails.application.routes.draw do
devise_for :users
resources :users, only: [:show, :destroy]
resources :items, only: [:new, :index, :create, :destroy]
resources :welcome, only: [:index]
get 'items/new'
root 'items#index'
end
的部分如下:
<p><%= item.name %></p>
<%= link_to "Done!", root_path, method: :delete, class: 'glyphicon glyphicon-ok' %>
和公正的情況下,以下是我items_controller銷燬行動:
def destroy
@item = Item.find(params[:id])
if @item.destroy
flash[:notice] = "You accomplished a task!"
redirect_to root_path
else
flash.now[:alert] = "There was an error deleting the task. Try again."
end
end
如前所述,我覺得這是我的路線,儘管我一直在修補他們。有人看到我誤解了什麼嗎?
謝謝。
你需要知道你所刪除的特定項目的項目路徑。所以item_path('@ item')我想? – karina
這樣做,謝謝! – sergio
我會給@Hamms的答案他是更完整的答案...也許我應該停止嘗試從我的手機回答問題... – karina