54

我已经安装了 RailsTutorial 示例应用程序(类似 twitter 的应用程序),并试图了解为什么当我尝试更新用户 db 时以下控制台代码不会更新数据库。我希望用户信息在使用user.save. 但是,这会回滚到未编辑的数据。这是由于基于用户的限制吗?

用户控制器:

class UsersController < ApplicationController

#before_filter :signed_in_user, only: [:index, :edit, :update, :destroy, :following, :followers]
# By default before filters apply to all actions
#before_filter :correct_user, only: [:edit, :update]
  def edit
    @user = User.find(params[:id])
  end

  def update

    @user = User.find params[:id]

    respond_to do |format|

    if @user.update_attributes(params[:user])
      flash[:notice] = "Profile updated"
      format.html { redirect_to(@user, :notice => 'User was successfully updated.') }
      format.json { respond_with_bip(@user) }
    else

      format.html { render :action => "edit" }
      format.json { respond_with_bip(@user) }
    end
    end
 end

  private


  def correct_user
    @user = User.find(params[:id])
    redirect_to(root_path) unless current_user?(@user)
  end

  def admin_user
    redirect_to(root_path) unless current_user.admin?
  end


end

导轨控制台:

1.9.3-p392 :001 > user = User.find(109)


User Load (8.2ms)  SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 109]]
 => #<User id: 109, name: "laurie", email: "auriepage@gmail.com", created_at: "2013-09-26 18:10:12", updated_at: "2013-09-26 18:10:12", password_digest: "$2a$10$aXEtun8Z2Deqy2wNxvFRNOjPczKQkYc1vDezP5OduJuF...", remember_token: "YhIUhgFm9iMewxdNOHJ45A", admin: false> 

1.9.3-p392 :002 > user.name = "larry"
 => "larry" 

1.9.3-p392 :003 > user.save
   (0.2ms)  begin transaction
  User Exists (0.6ms)  SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('auriepage@gmail.com') AND "users"."id" != 109) LIMIT 1
   (0.1ms)  rollback transaction
 => false 

用户型号:

class User < ActiveRecord::Base

# Declaration of public variables   
  attr_accessible :email, :name, :password, :password_confirmation
  has_secure_password
  has_many :microposts, dependent: :destroy
  has_many :relationships, foreign_key: "follower_id", dependent: :destroy
  has_many :followed_users, through: :relationships, source: :followed
  has_many :reverse_relationships, foreign_key: "followed_id", class_name: "Relationship", dependent: :destroy
  has_many :followers, through: :reverse_relationships, source: :follower

  before_save {email.downcase!}
  before_save :create_remember_token

  validates :name, presence: true, length: {maximum: 50}
  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
  validates :email, presence: true, format: {with: VALID_EMAIL_REGEX}, uniqueness: {case_sensitive: false}
  validates :password, presence: true, length: {minimum: 6}
  validates :password_confirmation, presence: true
  after_validation {self.errors.messages.delete(:password_digest)}

 private
    def create_remember_token
        self.remember_token = SecureRandom.urlsafe_base64
    end
end
4

8 回答 8

141

您的用户模型可能有不满意的验证。由于您尚未发布这些内容,因此我无法真正解决您的问题。为了让生活更轻松,您可以调试用户不愿意保存的原因。

尝试运行

user.errors.full_messages

这应该给你一个提示出了什么问题。

于 2013-09-26T20:17:41.760 回答
20

我知道这是一篇旧文章,但希望这可以帮助将来学习本教程的人。

正如接受的答案所表达的那样,这是由于不满足验证。我也遇到了这个问题,发现另一种解决方法是在对象上使用该update_attribute方法。user例如,如果你想更新name一个对象的字段user并让它自动保存到数据库中,而无需触及虚拟passwordpassword_confirmation字段,请使用以下命令:

user.update_attribute(:name, "larry")

这将只更新name字段并将其保存到数据库中(无需调用该save方法),而无需触摸passwordandpassword_confirmation字段。

于 2015-06-19T21:47:02.390 回答
9

在您尝试保存或验证活动记录模型实例后,您可以使用一些有用的命令查看有关所发生情况的更多信息。

user = User.find(108)
user.name = "Larry"
user.valid? # returns false
user.errors.messages # returns something like {email: "Cant be blank"}

显然我犯了这个错误,因为我不知道你的模型文件是什么样的,但如果它通常是由于两个原因之一而起作用。首先是您的验证失败。如果它们没有错误消息,则可能是因为您的过滤器链中的某些内容返回了错误。例如

class User << ActiveRecord::Base
  before_save :accidentally_return_false

  def accidentally_return_false
    self.some_boolean = (condition == value)
  end
end

user = User.new( params )
user.save # where condition does not equal value
user.valid? # false because of the before save method

希望有帮助

于 2013-09-26T20:18:33.243 回答
6

保存回滚时,使用 save! 而是打印错误日志。

于 2013-09-27T02:48:45.407 回答
3

您的验证没有通过。你可以做:

user.errors.full_messages

保存失败后在控制台中查看原因。

于 2013-09-26T20:16:43.187 回答
2

我遇到了同样的问题,并且没有存储任何错误。事实证明,我的before_save函数返回 false 导致保存被取消(我猜?我是 rails 新手)。

我试图设置一个布尔值,该值只能在文件上传后设置。

这就是我正在做的事情:

before_save :set_orientation

def set_orientation
  # ...do stuff...
  self[:is_landscape] = ratio > 1  # stores AND returns the boolean value!!
end

函数的最后一行也是一个隐式返回,我不是故意的。我的解决方案是明确做出回报:

before_save :set_orientation

def set_orientation
  # ...do stuff...
  self[:is_landscape] = ratio > 1  # store the boolean value
  return                           # now return
end
于 2014-05-30T05:00:05.670 回答
0

当我尝试更新用户的管理属性时,我遇到了数据库在控制台中回滚我的事务的相同问题。如果您正在学习 Hartl rails 教程,问题是如果您在控制台中输入 user.errors.messages,它会告诉您密码太短。这是因为在模型中,在保存密码并将密码散列到 password_digest 之前会进行密码验证。

解决此问题的方法是在控制台中执行您的正常活动,例如设置 user.admin = true,然后在完成后输入 user.password = "foobar",然后输入 user.password_confirmation = "foobar",然后当您执行 user.save 它将提交您的所有更改。

于 2014-09-04T17:29:47.333 回答
0

尝试更新数据库:

rails db:migrate
于 2018-03-21T07:29:16.097 回答