我有这样的嵌套资源
resources :profiles do
resources :albums do
resources :images
end
end
match ':username' => "profiles#show", :as => 'profile'
例如,特定图像的 url 是
http://localhost:3000/profiles/Azzurrio/albums/4/images/1
我不能在模板中使用个人资料用户名,当我使用 params[:username] 时它不起作用,所以谁能告诉我如何处理这个参数?