我在 rails 中有一个应用程序并使用 devise for authentication
,显示以下错误而不是路由到sign_in
页面
我的 route.rb 内容是:
Blog::Application.routes.draw do
devise_for :users
resources :posts
get "home/index"
root :to => 'home#index'
end
我不确定我错在哪里,如果有人能告诉我错误在哪里,那就太好了。谢谢