Rails 4 - 嵌套资源的路由

时间:2015-12-28 21:23:20

标签: ruby-on-rails path routes nested-routes

我正在尝试在我的rails 4应用程序中创建一个导航栏。

当用户注册时,我想自动为该用户构建配置文件。

我有用户和个人资料的模型。协会是:

user has_one profile
profile belongs_to user

我正在努力进行自动构建,但我现在有一个不同的问题。

在我的导航栏中,我有一个指向用户个人资料的链接。我正在试图弄清楚如何让这个链接起作用。

我的路线如下:

 resources :users do
     resources :profiles
  end

我也尝试过使用profile(singular)的路线,如:

resources :users do
    resources :profile
end

在我的导航栏中,我有:

<% if user_signed_in? %>
                    Hi <%= link_to(current_user.first_name.titlecase, user_profile_path(@current_user, @profile)) %></span>
                <span class="deviselinks" style="padding-right:30px">
                    <%= link_to "Sign out", destroy_user_session_path, :method => :delete %></span>

                  <% else %>

我也试过没有'@'符号,如:

Hi <%= link_to(current_user.first_name.titlecase, user_profile_path(current_user, profile)) %></span>

我也尝试过:

Hi <%= link_to 'current_user.first_name.titlecase', [@current_user, @profile] %></span>

对我而言,这似乎与导轨指南示例一致:http://guides.rubyonrails.org/routing.html

当我尝试这个时,我尝试创建一个新用户,但是收到此错误消息:

ActionView::Template::Error (Nil location provided. Can't build URI.):
2015-12-28T21:08:51.228286+00:00 app[web.1]: 
2015-12-28T21:08:51.228279+00:00 app[web.1]:     11:               <ul style="text-align: right">
2015-12-28T21:08:51.228287+00:00 app[web.1]: 
2015-12-28T21:08:51.228280+00:00 app[web.1]:     12:                 <span class="deviselinks" style="padding-right:30px">
2015-12-28T21:08:51.228281+00:00 app[web.1]:     13:                   <% if user_signed_in? %>
2015-12-28T21:08:51.228282+00:00 app[web.1]:     14:                     Hi <%= link_to 'current_user.first_name.titlecase', [@current_user, @profile] %></span>
2015-12-28T21:08:51.228282+00:00 app[web.1]:     15: 

当我尝试使用导航栏路径时:

Hi <%= link_to 'current_user.first_name.titlecase', user_profile_path(@current_user, @profile) %>

我收到此错误:

ActionView::Template::Error (No route matches {:action=>"show", :controller=>"profiles", :id=>nil, :user_id=>nil} missing required keys: [:id, :user_id]):

任何人都可以看到如何正确设置,以便导航栏链接到当前用户个人资料显示页面吗?

当我为grep配置文件设置路由时,我得到:

user_profiles GET       /users/:user_id/profiles(.:format)          profiles#index
                         POST      /users/:user_id/profiles(.:format)          profiles#create
        new_user_profile GET       /users/:user_id/profiles/new(.:format)      profiles#new
       edit_user_profile GET       /users/:user_id/profiles/:id/edit(.:format) profiles#edit
            user_profile GET       /users/:user_id/profiles/:id(.:format)      profiles#show
                         PATCH     /users/:user_id/profiles/:id(.:format)      profiles#update
                         PUT       /users/:user_id/profiles/:id(.:format)      profiles#update
                         DELETE    /users/:user_id/profiles/:id(.:format)      profiles#destroy

另一个尝试

当我尝试将导航栏链接更改为:

Hi <%= link_to 'current_user.first_name.titlecase', user_profile_path(@user, @profile) %></span>

我得到了与上述相同的错误。

另一个尝试

当我尝试将导航栏链接更改为:

Hi <%= link_to 'current_user.first_name.titlecase', user_profile_path(@user_id, @profile_id) %></span>

我得到了与上述相同的错误。

另一个尝试

当我尝试将路线更改为:

devise_for :users, #class_name: 'FormUser',
             :controllers => {
                :registrations => "users/registrations",
                # :omniauth_callbacks => "users/authentications"
                :omniauth_callbacks => 'users/omniauth_callbacks'
           }

  # get '/auth/:provider/callback' => 'users/authentications#create'
  # get '/authentications/sign_out', :to => 'users/authentications#destroy' 

  # PER SOURCEY TUTORIAL ----------
  match '/users/:id/finish_signup' => 'users#finish_signup', via: [:get, :patch], :as => :finish_signup
resources :users do
     resources :profiles, only: [:new, :create]
  end
resources :profiles, only: [:show, :edit, :update, :destroy]

将我的导航栏链接更改为:

 Hi <%= link_to 'current_user.first_name.titlecase', profile_path(@profile) %>

我收到此错误:

ActionView::Template::Error (No route matches {:action=>"show", :controller=>"profiles", :id=>nil} missing required keys: [:id]):

当我尝试导航栏链接时,如下面的建议所示:

Hi <%= link_to (current_user.first_name.titlecase, profile_path(@profile)) %></span>

我收到此错误:

SyntaxError (/app/app/views/pages/_nav.html.erb:14: syntax error, unexpected ',', expecting ')'
2015-12-28T22:14:54.726458+00:00 app[web.1]: ...rent_user.first_name.titlecase, profile_path(@profile)) );@o...
2015-12-28T22:14:54.726459+00:00 app[web.1]: ...                               ^
2015-12-28T22:14:54.726460+00:00 app[web.1]: /app/app/views/pages/_nav.html.erb:14: syntax error, unexpected ')', expecting keyword_end

当我尝试将导航栏链接更改为:

            Hi <%= link_to ('current_user.first_name.titlecase', profile_path(@profile)) %></span>

我得到另一个语法错误:

SyntaxError (/app/app/views/pages/_nav.html.erb:14: syntax error, unexpected ',', expecting ')'
2015-12-28T22:33:53.457021+00:00 app[web.1]: 
2015-12-28T22:33:53.457014+00:00 app[web.1]: ...ent_user.first_name.titlecase', profile_path(@profile)) );@o...
2015-12-28T22:33:53.457015+00:00 app[web.1]: /app/app/views/pages/_nav.html.erb:14: syntax error, unexpected ')', expecting keyword_end
2015-12-28T22:33:53.457015+00:00 app[web.1]: ...                               ^
2015-12-28T22:33:53.457016+00:00 app[web.1]: ...ase', profile_path(@profile)) );@output_buffer.safe_append='...
2015-12-28T22:33:53.457017+00:00 app[web.1]: ...                               ^):

另一个尝试

当我尝试按照这篇文章中的想法时:

User profile pages with devise - Routing to show action

我将导航栏链接更改为:

        Hi <%= link_to 'current_user.first_name.titlecase', current_user_profile_path %></span>

然后我收到此错误消息:

ActionView::Template::Error (undefined local variable or method `current_user_profile_path' for #<#<Class:0x007f4337749f60>:0x007f4337749358>):

另一个尝试

当我尝试将导航栏链接更改为:

 Hi <%= link_to('current_user.first_name.titlecase', profile_path) %></span>

然后我收到此错误消息:

ActionView::Template::Error (No route matches {:action=>"show", :controller=>"profiles"} missing required keys: [:id]):

我会疯狂地试图学习编码。

简介的新RAKE路线是:

edit_profile GET       /profiles/:id/edit(.:format)           profiles#edit
                 profile GET       /profiles/:id(.:format)                profiles#show
                         PATCH     /profiles/:id(.:format)                profiles#update
                         PUT       /profiles/:id(.:format)                profiles#update
                         DELETE    /profiles/:id(.:format)                profiles#destroy

           user_profiles POST      /users/:user_id/profiles(.:format)     profiles#create
        new_user_profile GET       /users/:user_id/profiles/new(.:format) profiles#new

当我启动并按下新用户时,日志显示此get命令:

Started GET "/users/sign_up"

1 个答案:

答案 0 :(得分:0)

我建议只嵌套一些配置文件操作,如下所示:

resources :users do
    resources :profiles, only: [:new, :create]
end

然后使用顶级路由进行其他操作:

resources :profiles, only: [:show, :edit, :update, :destroy]

如果您拥有current_user,则只能将该用户的profile传递给这些操作,而不是两者。当然,您的路径名称将会更改,您必须更改视图中的路径名称。 (像Hi <%= link_to(current_user.first_name.titlecase, profile_path(@profile)) %>)。

我很好奇,为什么看似用户链接导致用户的个人资料呢?为什么不使用Users#show或等效路线链接到user_path(@current_user),然后只在Users#show视图中呈现个人资料?