gpt4 book ai didi

mysql - Rails 4 设计名字,姓氏不进入数据库

转载 作者:可可西里 更新时间:2023-11-01 08:17:20 24 4
gpt4 key购买 nike

我在我的 Rails 4 应用程序上设置了一个装置。我遵循了本教程 https://github.com/plataformatec/devise/wiki/How-To:-Allow-users-to-sign-in-using-their-username-or-email-address并添加了用户名值。我还想要 First Name 和 Last Name,所以我认为它与教程很接近。我遵循了一些部分并跳过了身份验证部分,并更新了 View 。它有点工作。注册字段时会显示,当您填写时,它们会通过所有检查,但不会输入数据库。它只是为名字和姓氏显示 NULL,但用户名实际上是有效的。以下是我执行的步骤。

  1. 我遵循了整个教程(除了关于 gmail 和 me.com 的最后一部分)。

  2. 我添加了名字和姓氏字段:

我运行了命令

rails generate migration add_firstname_to_users first_name:string:uniq
rails generate migration add_lastname_to_users last_name:string:uniq

然后做了rake db:migrate .然后我将字段添加到应用程序 Controller 以允许这些字段。这是我的完整 application_controller.rb

class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception

before_filter :configure_permitted_parameters, if: :devise_controller?
protected
def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit(:first_name, :last_name, :username, :email, :password, :password_confirmation, :remember_me) }
devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:login, :username, :email, :password, :remember_me) }
devise_parameter_sanitizer.for(:account_update) { |u| u.permit(:first_name, :last_name, :username, :email, :password, :password_confirmation, :current_password) }
end
end

然后我将名字和姓氏添加到 attr_accessor .这是我的完整 user.rb模型。

class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
attr_accessor :login, :first_name, :last_name

devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :authentication_keys => [:login]

def self.find_first_by_auth_conditions(warden_conditions)
conditions = warden_conditions.dup
if login = conditions.delete(:login)
where(conditions).where(["lower(username) = :value OR lower(email) = :value", { :value => login.downcase }]).first
else
where(conditions).first
end
end
end

然后我更新了我的观点并添加了<%= f.text_field :first_name %><%= f.text_field :last_name %>新注册和注册编辑 View 。

提交表单时字段显示且没有错误。他们只是不更新​​数据库。我通过 PHPMyAdmin 在 MYSQL 数据库中手动添加了名称,然后转到编辑页面,它正确地抓取了它。如果您能提供帮助,那就太好了。谢谢! :)

最佳答案

尝试将其从 attr_accessor 中删除,因为 attr_accessor 的工作方式类似于实例变量

http://apidock.com/ruby/Module/attr_accessor

关于mysql - Rails 4 设计名字,姓氏不进入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21793148/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com