我正在为我的应用程序使用 Devise gem。现在我想使用代码创建一个用户,但是在数据库表“用户”中密码是加密的。所以我希望我不能直接将它保存为
new_user = User.new
new_user.email = "xyz@xys.com"
new_user.password = "1sdf" - i cannot use this becs its actually : encrypted_password
new_user.save
这可能吗?
我正在为我的应用程序使用 Devise gem。现在我想使用代码创建一个用户,但是在数据库表“用户”中密码是加密的。所以我希望我不能直接将它保存为
new_user = User.new
new_user.email = "xyz@xys.com"
new_user.password = "1sdf" - i cannot use this becs its actually : encrypted_password
new_user.save
这可能吗?