作者在 2022-10-19 23:43:38 发布以下内容
生成模型
rails g model User username:string email:string password_digest:string
在user模型加入has_secure_passwordclass User < ApplicationRecord
has_secure_password
end