Rails 3 Devise,一切都路由到本地主机索引

发布于 2024-11-24 21:54:24 字数 303 浏览 0 评论 0原文

因此,我按照 Railscasts 教程进行操作,一切正常,直到我单击注册表单上的“提交”。它给了我一个根本错误,然后我研究并发现答案是没有路线。所以我使用 root :to => 'home#index' 在我的路由文件中,然后允许我注册,然后重新定位到索引,但现在当我尝试访问注册或登录时,我会得到索引页面。

这是我的routes.rb 文件

Travel::Application.routes.draw do
 devise_for :users
root :to => 'home#index'
end

So I followed the Railscasts tutorials, and everything works up until I click submit on my sign up form. It gave me a root error which I then researched and found that the answer is there is no route. So I used root :to => 'home#index' in my routes file, which then allowed me to sign up and then get relocated to the index, but now when I try to access the sign up or login, I get the index page.

Here is my routes.rb file

Travel::Application.routes.draw do
 devise_for :users
root :to => 'home#index'
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兔姬 2024-12-01 21:54:24

这是因为您在登录后无法访问注册或登录页面。请先尝试访问 /users/sign_out

It's because you can't access the sign up or login pages while already logged in. Try accessing /users/sign_out first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文