在设计中,我如何访问用户的身份验证令牌.当ajax调用启动用户会话时,我需要能够从用户那里获取身份验证令牌.我尝试过在我的模型中添加:token_authenticable
devise :database_authenticatable,:registerable,:recoverable,:rememberable,:trackable,:validatable
还添加了名称的属性,例如:authentication_token和:authenticity_token到attr_accessible.但每当我尝试用user.auth调用authentication_token或者authenticity_token时,我会收到像这样的错误
NoMethodError: undefined method `authentication_token' for #<User:0x000001016b1140>
对不起,我需要通过我的ajax调用来获取此令牌(我工作的最后一个项目,我有一个令人难以置信的BOOTLEG解决方案,其中设备几乎被撕掉了应用程序,我只需要这个该死的令牌)