Rails错误resource_name - 设计帮助路由和呈现

Han*_*ans 6 ruby ruby-on-rails devise ruby-on-rails-3

我正在尝试渲染Devise gem的登录视图,但是我收到一个错误,下面是我目前的代码:

这是我的views/users/shared/_links.html.erb:

<%- if controller_name != 'sessions' %>
  <%= link_to "Sign in", new_session_path(resource_name) %><br />
<% end -%>

<%- if devise_mapping.registerable? && controller_name != 'registrations' %>
  <%= link_to "Sign up", new_registration_path(resource_name) %><br />
<% end -%>

<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
  <%= link_to "Forgot your password?", new_password_path(resource_name) %><br />
<% end -%>

<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
  <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %><br />
<% end -%>

<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
  <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %><br />
<% end -%>

<%- if devise_mapping.omniauthable? %>
  <%- resource_class.omniauth_providers.each do |provider| %>
    <%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider) %><br />
  <% end -%>
<% end -%>
Run Code Online (Sandbox Code Playgroud)

我的config/routes.rb:

Densidste::Application.routes.draw do
  match 'user/edit' => 'users#edit', :as => :edit_current_user

  match 'signup' => 'devise/users#new', :as => :signup

  match 'logout' => 'devise/sessions#destroy', :as => :logout

  devise_for :users do
    get "login", :to => "devise/sessions#new"
  end

  resources :sessions

  resources :users

  devise_for :users

  resources :aktivs

  resources :taggingposts

  resources :tags

  resources :kommentares

  resources :posts

  # You can have the root of your site routed with "root"
  # just remember to delete public/index.html.
  root :to => "public#index"
end
Run Code Online (Sandbox Code Playgroud)

在我的应用程序布局中:

<%= render("users/shared/links") %>
Run Code Online (Sandbox Code Playgroud)

_links.html.erb部分中出现以下错误:

NameError in Public#index

Showing C:/Rails/Densidste/app/views/users/shared/_links.erb where line #2 raised:

undefined local variable or method `resource_name' for #<#<Class:0x5db76c0>:0x5db6538>

Extracted source (around line #2):

1: <%- if controller_name != 'sessions' %>
2:   <%= link_to "Sign in", new_session_path(resource_name) %><br />
3: <% end -%>
4: 
5: <%- if devise_mapping.registerable? && controller_name != 'registrations' %>

Trace of template inclusion: app/views/public/index.html.erb

Rails.root: C:/Rails/Densidste
Run Code Online (Sandbox Code Playgroud)

最后,在我的应用程序控制器中,我有以下内容:

before_filter :resource_name
  def resource_name
    if user_signed_in?
      current_user.name
    else
      :user
    end
  end
end
Run Code Online (Sandbox Code Playgroud)

任何帮助将不胜感激,谢谢!

and*_*ell 16

resource_name在Devise生成的控制器中定义.我不认为您可以在应用程序布局中包含这些共享链接,我认为它们旨在用于设计表单(注册,会话,密码,确认等),这些表单由设计控制器呈现.

如果您希望每个页面都有很少的登录/退出片段,您可能需要考虑自己编写这些链接.例如,如果您正在使用的对象是user,您可以这样写:

<%= link_to "Sign in", new_session_path(:user) %><br />
Run Code Online (Sandbox Code Playgroud)

resource_name只是您正在使用的资源的Devise抽象.我希望如果你正在建立这个链接,你知道你想要登录哪个经过身份验证的对象,所以你可以明确指定它.您可以运行rake routes | grep sessions并查看路径的名称并直接使用它.例如:

<%= link_to "Sign in", new_user_session_path %><br />
Run Code Online (Sandbox Code Playgroud)