Rails 中的 has_secure_password 出现错误 4

getting error with has_secure_password in Rails 4

我正在尝试在我的 Rails 项目中使用 "has_secure_password"。我在我的 Gemfile 和 运行 捆绑安装中包含了 bcrypt gem。但是,当我 运行 项目时,出现以下错误:

NameError in UsersController#index
undefined local variable or method `has_secure_pasword' for #<Class:0x00000004169e38>

用户class

class User < ActiveRecord::Base
   has_secure_pasword

   validates :password, length: { minimum: 6 }

end

关于如何解决这个问题有什么想法吗? 我还没有创建任何用户 - 这可能是问题所在吗?

undefined local variable or method `has_secure_pasword' for Class:0x00000004169e38

has_secure_pasword 应该是 has_secure_passwords password.