我创建了一条新路线,如下所示:
resources :animals do
member do
get ':id/resumed_rep_life', :action => 'resumed_rep_life'
end
end
match '/animals/:id/resumed_rep_life' => "animals#resumed_rep_life"
我怎样才能为它建立一个链接?
我试过resumed_rep_life_animal_path(animal)
但它不起作用(找不到方法)。我的路由正确吗?