Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 gem 'devise' 安装时,他在表单中创建了三个字段用于注册(电子邮件、密码、确认密码)。可以为他的表格添加列“名称”。提前致谢。
可以在设计用户表中创建表属性,例如:
t.string :name
并使用命令迁移和安装所有视图:rails generate devise:views users 然后转到设计/注册/新文件添加以下行
rails generate devise:views users
<%= f.label :name %> <%= f.text_field :name %>
然后在用户注册表或注册表单时显示名称字段。
请阅读Devise wiki或查看 railscasts