使用设计我想注册一个计划类型的用户,计划可以是永久的或临时的。我有计划表,我存储了计划名称。
class User < ActiveRecord::Base
belongs_to :plan
end
在plan.rb中我有
class Plan < ActiveRecord::Base
has_many :users
end
我的第一页包含两个选择此计划的链接
= link_to "Register with Permanent Plan", new_user_registration_path
= link_to "Register with Temporary Plan", new_user_registration_path
如何将此计划值传递到下一页,以便在用户注册时将包含受尊重计划的plan_id?帮助将受到高度赞赏。谢谢!