使用Desive 2.1.2和Rails 3.2.6

我正在做这个问答;A以防万一其他人遇到这个问题,因为我发现关于它的文档很少且分散.

如果试图将Devise设置为可锁定,则可能会发生此错误.

undefined local variable or method `locked_at' for [someClass]

这意味着你的模型没有合适的属性.

先决条件:

# ==> Configuration for :lockable
# Defines which strategy will be used to lock an account.
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
# :none            = No lock strategy. You should handle locking by yourself.
config.lock_strategy = :failed_attempts

# Defines which key will be used when locking and unlocking an account
config.unlock_keys = [ :email ]

# Defines which strategy will be used to unlock an account.
# :email = Sends an unlock link to the user email
# :time  = Re-enables login after a certain amount of time (see :unlock_in below)
# :both  = Enables both strategies
# :none  = No unlock strategy. You should handle unlocking by yourself.
config.unlock_strategy = :email

# Number of authentication tries before locking an account if lock_strategy
# is failed attempts.
config.maximum_attempts = 20

# Time interval to unlock the account if :time is enabled as unlock_strategy.
# config.unlock_in = 1.hour

将模型设置为包含devise :lockable个:

class Example < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable, :lockable

推荐答案

只需在Desive migration中取消对该字符串的注释:

  ## Lockable
  # t.integer  :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
  # t.string   :unlock_token # Only if unlock strategy is :email or :both
  # t.datetime :locked_at

Ruby-on-rails相关问答推荐

如何将Form_With用于多个没有控制器的型号

Rails Heroku部署:预编译assets资源 失败.SassC::语法错误

仅在两个子域间共享Rails cookies,并为所有其他子域使用单独的cookie

序列化来自关联的不可变数据是个好主意吗?

正确更新其他列的更新列

无效的单表继承类型:Rails

Rails 和 jsonb 类型jsonb不存在

如何在 Rails 中注释掉 ERB?

如何判断是否已经在 ruby​​ on rails 的数据库事务中?

Rails 4 Form: has_many through: checkboxes

如何在 RoR 中实现成就系统

Rails 3.1 在开发模式下非常慢,因为assets资源 ,怎么办?

设计记住我和会话

rails 单数资源还是复数?

Rails:带参数的 URL/路径

Rails SQL 正则表达式

如何翻译 ActiveRecord 模型类名称?

如何在 Rails 迁移中判断数据库类型?

使用连接的 Ruby on Rails ActiveRecord 查询

Rails.cache 在测试之间被清除了吗?