0

エラー:

Started GET "/users/invitation/new" for 127.0.0.1 at 2013-01-09 01:00:31 +0100
  Processing by Devise::InvitationsController#new as HTML
  User Load (451.8ms)  SELECT "users".* FROM "users" WHERE "users"."id" = 3 LIMIT 1
Rendered users/invitations/new.html.erb within layouts/application (69.2ms)
Rendered layouts/_google_analytics.html.erb (0.4ms)
Rendered layouts/_navbar.html.erb (73.6ms)
Completed 500 Internal Server Error in 10785ms

ActionView::Template::Error (No route matches {:controller=>"devise/dashboards", :action=>"show"}):
    23:         </ul>
    24:         <ul class="nav pull-right" id="main-menu-right">
    25:             <% if user_signed_in? %>
    26:                 <li><%= link_to raw("My Agenda"), {:controller => :dashboards, :action => :show}, :tabindex => "-1" %></li>
    27:                 <li><%= link_to raw("My Services"), {:controller => :creative_services, :action => :index_my_services}, :tabindex => "-1" %></li>
    28:                 <li id="fat-menu" class="dropdown">
    29:                   <a href="#" id="dropUser" role="button" class="dropdown-toggle" data-toggle="dropdown">
  app/views/layouts/_navbar.html.erb:26:in `_app_views_layouts__navbar_html_erb__952134567516339951_70121556350080'
  app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb___2663940439779075013_70121556359600'

私の Rails 3.1 プロジェクトでは、すでに Devise を使用しています。

Gemfile に devise_invitable gem を追加しました。

gem "devise", "~> 2.0.0"
gem 'devise_invitable', '~> 1.0.0'

これらのコマンドを実行します

rails generate devise_invitable:install
rails generate devise_invitable User
rake db:migrate
rails generate devise_invitable:views users

Devise.rb でオプションを設定します (無制限の招待

config.invitation_limit = 

サーバーを起動します。

/users/invitation/new にアクセスしようとすると

ルーティング エラーが発生します

Routing Error

No route matches {:controller=>"devise/dashboards", :action=>"show"}

私のユーザーモデルでは:

devise :invitable, :database_authenticatable, :registerable, :confirmable,
     :recoverable, :rememberable, :trackable, :validatable, :invitable

私のルートファイル:

devise_for :users, :controllers => { :registrations => 'registrations' }

このルーティングの問題を解決するにはどうすればよいですか?

4

1 に答える 1

0

回避策はこちらデバイス {:controller=>"devise/static", :action="about"} でのルーティング エラー

リンクを変更しました:

26:  <li><%= link_to raw("My Agenda"), {:controller => :dashboards, :action => :show}, :tabindex => "-1" %></li>
27:  <li><%= link_to raw("My Services"), {:controller => :creative_services, :action => :index_my_services}, :tabindex => "-1" %></li>

に:

<li><%= link_to raw("My Agenda"), "/dashboards/show", :tabindex => "-1" %></li>
<li><%= link_to raw("My Services"), "/creative_services/index_my_services", :tabindex => "-1" %></li>

「そして、すべてうまくいった」

于 2013-01-09T23:13:28.323 に答える