设计可确认的编辑模板

发布于 2024-11-27 22:15:11 字数 458 浏览 0 评论 0原文

我设计了可确认的设置和工作。一切正常,但是......生成的链接很奇怪,单击时会显示一个空白页面。

然而,当点击链接时,它似乎确实被确认了!帐户。我的问题是如何自定义空白页?我应该在哪里放置它的视图模板?我不久前复制了所有的设计布局,但我似乎没有此页面。或者我怎样才能让它重定向?

该链接看起来也有点奇怪...

http://localhost:5000/users/confirmation .someusername?confirmation_token=yIle0ODY8QRyGi6QQnhk

我最近升级到从 1.2 到 1.4.2,我好像不记得以前是空白的。

谢谢

I have devise confirmable setup and working. Everything functions, but..., the generated link is odd and when click it displays a blank page.

However when the link is clicked it does appear to confirm! the account. My question is how to customize the blank page? Where would I put a view template for it? I copied all the devise layouts awhile ago, but I don't appear to have this page. Or alternatively how can I make it redirect?

the link also looks a bit odd...

http://localhost:5000/users/confirmation.someusername?confirmation_token=yIle0ODY8QRyGi6QQnhk

I recently upgraded to 1.4.2 from 1.2, and I don't seem to recall it being blank before.

Thanks

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

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

发布评论

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

评论(1

懷念過去 2024-12-04 22:15:11

我必须改变我的路线,因为最新版本的 Devise 必须使用除 new 和 create 之外的新操作。

修复前

resources :confirmations, :only => [:new, :create]

resources :confirmations

I had to change my routes as the newest version of Devise must use a new action other than new and create.

Before

resources :confirmations, :only => [:new, :create]

Fixed:

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