2016-04-13 80 views
2

我缺少聯繫人#顯示前綴'聯繫人',如下所示。Rails - 缺少路由助手前綴

耙路線

   contacts GET /contacts(.:format)      contacts#index 
         POST /contacts(.:format)      contacts#create 
      new_contact GET /contacts/new(.:format)     contacts#new 
      edit_contact GET /contacts/:id/edit(.:format)   contacts#edit 
         GET /contacts/:id(.:format)     contacts#show 
         PATCH /contacts/:id(.:format)     contacts#update 
         PUT /contacts/:id(.:format)     contacts#update 
         DELETE /contacts/:id(.:format)     contacts#destroy 

我想這是點擊以下鏈接時,爲什麼我收到一個點,而不是一個斜槓的原因。

_contact.html.erb

<%= link_to "delete contact", contact, method: :delete, 
            data: { confirm: "You sure?" } %> 

服務器日誌適當DELETE請求,但是,無法呈現正確/聯繫人/ 26的/contact.26代替。

Started DELETE "/contact.26" for 128.177.12.30 at 2016-04-13 21:04:30 +0000 

ActionController::RoutingError (No route matches [DELETE] "/contact.26"): 

每一個崗位,我遇到了點,而不是一個斜槓似乎從複數錯誤遏制,但是,我不相信這是這裏的情況。此外,我從我的路由文件中刪除了資源:聯繫人,運行$ rake路由,添加資源:聯繫人,運行$ rake路由,問題依然存在。

此問題對於聯繫人模型來說似乎是唯一的,因爲其餘模型在刪除時不會丟失任何前綴或發生此錯誤。

如何將'contact'前綴添加回'contacts#show'?參考

的routes.rb文件:

Rails.application.routes.draw do 
    root 'static_pages#home' 
    get 'help' => 'static_pages#help' 
    get 'about' => 'static_pages#about' 
    get 'contact' => 'static_pages#contact' 
    get 'signup' => 'users#new' 
    get 'login' => 'sessions#new' 
    get 'newevent' => 'events#new' 
    get 'newteam' => 'teams#new' 
    get 'newperformance' => 'performances#new' 
    get 'newhotel' => 'hotels#new' 
    get 'newcontact' => 'contacts#new' 
    get 'newflight' => 'flights#new' 
    get 'newground' => 'grounds#new' 
    get 'newguest' => 'guests#new' 
    post 'login' => 'sessions#create' 
    delete 'logout' => 'sessions#destroy' 
    resources :users 
    resources :events 
    resources :teams do 
    member do 
     get :events 
    end 
    end 
    resources :performances 
    resources :hotels 
    resources :contacts 
    resources :flights 
    resources :grounds 
    resources :guests 
    resources :account_activations, only: [:edit] 
    resources :password_resets, only: [:new, :create, :edit, :update] 
end 
+0

嘗試'<%= link_to「刪除聯繫人」,contact_path(聯繫人),方法:: delete, data:{confirm:「你確定? }%>' – Abhi

+0

不幸的是,出現相同的路由錯誤。 – ncarroll

回答

0

,你可能需要通過

resources :contacts 

get 'contact' => 'static_pages#contact' 

最簡單的解決方案設定的路線之間的衝突可能是改變靜態頁面的鏈接。如果可以的話,最好把資源放在一起。

+0

謝謝!我忘記了那些靜態頁面,因爲它們是教程的殘餘部分,現在我可以停止將我的頭撞向牆壁...... – ncarroll

0

我剛剛遇到了同樣的錯誤。

修復我的問題是,「s」在資源

我有「資源」,並得到了同樣的問題,你的終點。

我改成了「資源」,並將其固定我的問題

在我的情況只是一個錯字。

0

昨天發生了這個錯誤。什麼修復它刪除了未使用的幫助程序文件。可能值得一試。