Rails 应用程序的初始(登陆)页面
我正在为 Rails 应用程序创建一个启动页面,其中包含一个电子邮件字段,供用户填写并在网站完全启动时收到通知。
最好的搭配方式是什么?
我是否应该为登陆页面创建一个新的应用程序或者我应该使用相同的应用程序并设置一些变量,例如“:splash => true”,这将只提供对启动页面的访问
这也会有所帮助部署中...
I am creating a splash page for a rails app which contains an email field for the user to fill up and get notified when the site is completely launched.
What is the best way to go with?
Should I create a new application just for landing page OR should I use the same app with some variable set like ":splash => true" which would give access only to the splash page
Which would also help in deployment...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加启动页面
添加一个
before_action
,为应用程序控制器的所有操作临时重定向到启动页面。当网站启动时,禁用该
before_action
。Add a splash page
Add a
before_action
that does a temp redirect to the splash page for all actions to your application controller.when the site is launched disable that
before_action
.