下面的路徑拋出了一個錯誤:的Rails:嵌套資源
= link_to 'Subscribers', user_subscribers_path(current_user)
undefined method `user_subscribers_path' for <#:0x007f9b240b3148>
我不知道爲什麼。
我定義我的路線如下:
resources :users, :only => [:show, :index], :has_many => :subscribers, :shallow => true
謝謝!
編輯 耙路線沒有顯示任何特別有用的東西。僅有的兩條線路與用戶有:
users GET /users(.:format) users#index {:has_many=>:subscribers}
user GET /users/:id(.:format) users#show {:has_many=>:subscribers}
你可以在你的終端中執行'rake routes'並顯示你結果呢? –
是的,我現在更新了我的問題。 – Karan