ActiveRecord:更改并保存模型内的对象状态

发布于 2024-09-29 06:28:53 字数 345 浏览 8 评论 0原文

我有以下代码:

  def incoming_acceptation(incoming_code)
    if invite_code == incoming_code
      accepted = true
      self.save
      true
    else
      false
    end
  end

但它不会更改并保存接受为 true,它仍保持以前的状态 false。

@i.incoming_acceptation(incoming_code) => true
@i.accepted => false

I have the following code:

  def incoming_acceptation(incoming_code)
    if invite_code == incoming_code
      accepted = true
      self.save
      true
    else
      false
    end
  end

But it does not change and save accepted to true, it remains in the previous state, false.

@i.incoming_acceptation(incoming_code) => true
@i.accepted => false

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别念他 2024-10-06 06:28:53

我建议:

def incoming_acceptation(incoming_code)
  update_attribute(:accepted, true) if invite_code == incoming_code
end

update_attribute 将更改并保存该属性。还有 update_attributes(注意 s)接受哈希值以一次更改多个属性:

@obj.update_attributes(:accepted => true, :accepted_at => Time.now)

注意:update_attributeupdate_attributes > 当更改和保存成功时,两者都会返回 true ,就像您的示例一样。

I recommend:

def incoming_acceptation(incoming_code)
  update_attribute(:accepted, true) if invite_code == incoming_code
end

update_attribute will change and save that attribute. There's also update_attributes (notice the s) that accepts Hash to change multiple attributes at once:

@obj.update_attributes(:accepted => true, :accepted_at => Time.now)

Note: update_attribute and update_attributes both return true when the change and save were successful, just like in your example.

碍人泪离人颜 2024-10-06 06:28:53
self.accepted = true
self.accepted = true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文