如何在Rails中创建用户配置文件



我正在使用设计进行用户注册和身份验证,但希望也有用户配置文件,例如/user/john-doe与所有字段,如公司名称,电话号码等人可以添加。

是否有任何Rails方法来完成它的开箱即用?有什么宝石吗?如果没有,有没有人能给我一些指导,告诉我该怎么做?

没有宝石来添加公司名称,电话等(至少我知道:)),但通常我所做的是,

我通过迁移

将上述列添加到表中

Ex: add_column :users, :company_name, :string

然后我相应地更新模型

class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable
  # Setup accessible (or protected) attributes for your model
  attr_accessible :email, :password, :password_confirmation, :remember_me, *:company_name*
end 

然后我运行这个命令来复制设计视图

rails generate devise:views

然后我用新的text_boxes等更新相应的视图。

HTH

相关内容

  • 没有找到相关文章

最新更新