我正在嵌套这样的资源:
resources :users do
resources :tags
end
在我的标签索引页面中,我想链接到单个标签页面,所以我这样做:
<%= link_to 'Show', user_tag_path(@user.id) %>
在我的控制器中,我传递了当前登录的用户 ID:
@user = current_user
不幸的是,我收到以下错误:
No route matches {:action=>"show", :controller=>"tags", :user_id=>1}
我在这里做错了什么?