以下路径引发错误:
= link_to 'Subscribers', user_subscribers_path(current_user)
<#:0x007f9b240b3148> 的未定义方法“user_subscribers_path”
我不确定为什么。
我已经定义了我的路线如下:
resources :users, :only => [:show, :index], :has_many => :subscribers, :shallow => true
谢谢!
编辑 rake 路线没有显示任何特别有用的东西。仅有的两行订阅者是:
users GET /users(.:format) users#index {:has_many=>:subscribers}
user GET /users/:id(.:format) users#show {:has_many=>:subscribers}