Rails 5 个模型对象未显示所有 Devise 属性
Rails 5 model objects not showing all Devise attributes
我正在使用 Rails 5 API 设计。我有一个 User
模型。架构如下所示。
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["email"], name: "index_users_on_email", unique: true, using: :btree
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
end
但我遇到的问题是 Rails 仅显示 :id , :email , :created_at , :updated_at
属性作为模型的一部分。例如,在 rails 控制台
User.new
=> #<User id: nil, email: "", created_at: nil, updated_at: nil>
User.first
User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT [["LIMIT", 1]]
=> #<User id: 2, email: "your@email.com", created_at: "2016-09-22 03:58:04", updated_at: "2016-09-22 04:54:41">
但是这些属性存在于database.This前面提到的问题。 。但那里没有答案。请帮忙。
尝试attributes
方法
User.first.attributes
这可能是因为devise
没有暴露他们的内部属性。
因此,要获取所有属性,您可以使用 .attributes
(已记录 here),其中 returns 一个哈希,您可以在其上调用 to_json
:
user = User.find(1)
user.attributes.to_json # => contains all fields like reset_password_token etc.
设计限制 encrypted_password
等属性,以便关键信息不会在 API 调用中暴露。所以要覆盖它,你需要覆盖 serializable_hash
方法。
def serializable_hash(options = nil)
super(options).merge(encrypted_password: encrypted_password)
end
这不是 Rails 5 的特定功能,而是保护您属性的设计功能。
希望对您有所帮助!
我正在使用 Rails 5 API 设计。我有一个 User
模型。架构如下所示。
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["email"], name: "index_users_on_email", unique: true, using: :btree
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
end
但我遇到的问题是 Rails 仅显示 :id , :email , :created_at , :updated_at
属性作为模型的一部分。例如,在 rails 控制台
User.new
=> #<User id: nil, email: "", created_at: nil, updated_at: nil>
User.first
User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT [["LIMIT", 1]]
=> #<User id: 2, email: "your@email.com", created_at: "2016-09-22 03:58:04", updated_at: "2016-09-22 04:54:41">
但是这些属性存在于database.This前面提到的问题。
尝试attributes
方法
User.first.attributes
这可能是因为devise
没有暴露他们的内部属性。
因此,要获取所有属性,您可以使用 .attributes
(已记录 here),其中 returns 一个哈希,您可以在其上调用 to_json
:
user = User.find(1)
user.attributes.to_json # => contains all fields like reset_password_token etc.
设计限制 encrypted_password
等属性,以便关键信息不会在 API 调用中暴露。所以要覆盖它,你需要覆盖 serializable_hash
方法。
def serializable_hash(options = nil)
super(options).merge(encrypted_password: encrypted_password)
end
这不是 Rails 5 的特定功能,而是保护您属性的设计功能。
希望对您有所帮助!