Devise - 一个模型和多个不同的配准视图
我想在 Rails 3.1 中使用 Devise 进行身份验证。
我在静态“注册”页面上创建了一个定价表,其中包含三个选项。 A、B 和 C 级。
我想将注册选择作为参数传递给设计,或者为不同的选项创建单独的视图,但使用相同的用户模型。
我不太确定该走哪条路,或者如何定制设备来处理这个问题。
任何意见将不胜感激!我们是 Rails 新手。
I want to use Devise for authentication in rails 3.1.
I've created a pricing table on a static "signup" page that has three options. Level A, B and C.
I want to either pass the signup selection to devise as a parameter, or create separate views for the different options, but use the same User model.
I'm not really sure which way to go, or how to customize devise in a way to handle this.
Any input would be greatly appreciated! We're rails newbies.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 将属性“subscription_level”放入用户模型中
2) 创建视图来确定
current_user.subscription_level
的值,并且根据其值显示不同的内容......
1) put an attribute "subscription_level" into your user model
2) create views which determine what the value of
current_user.subscription_level
is,and which display different content depending on it's value...