我刚创建了一个安装了devise插件的示例应用程序。我的用户模型中有:token_authenticatable
但由于某种原因,当我创建用户时,它会将authentication_token
列创建为NULL
。
在创建新用户以生成令牌时,您似乎需要设置u.ensure_authentication_token!
。
我错过了什么或者我需要覆盖设计代码吗?
答案 0 :(得分:17)
在您的用户类中,只需添加
即可class User < ActiveRecord::Base
devise :database_authenticatable, :registerable #...etc
before_save :ensure_authentication_token
end
这是一个设置authentication_token的设计方法。