#routes.rb
map.connect '/articles/new', :controller => 'articles', :action => 'new'
map.connect '/articles/:author_name', :controller => 'articles', :action => 'show'
map.connect '/articles/:author_name/edit', :controller => 'articles', :action => 'edit'
map.resources :articles, :comments
當我到/ articles/test並單擊delete時,它什麼都不做。我猜我的自定義路線正在阻止它,我該如何解決它?在Rails中使用自定義路由時,銷燬方法不起作用
謝謝
你是如何設置測試路線的,你的'link_to' /'button_to'代碼啓動了刪除看起來像什麼? – 2010-02-04 17:11:56
我正在使用什麼腳手架。我不這麼認爲,那該死的路線。 – 2010-02-04 17:43:16
從您發佈的代碼中,您沒有/ articles/test路徑。 – 2010-02-05 09:46:57