检查模型是否在 before_save 事件上被修改或创建

发布于 2024-12-23 09:59:27 字数 74 浏览 1 评论 0原文

我想检查 Rails 的 before_save 回调中是否正在创建模型。 我还想检查它是否已被修改(更新时)。

谢谢

I want to check if a model is being created in the before_save callback of Rails.
I also want to check if it has been modified (when updating).

Thanks

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

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

发布评论

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

评论(1

终止放荡 2024-12-30 09:59:27

您可以使用 new_record? 查看您是否有一个全新的对象,并且 已更改? 为看看是否有任何改变:

before_save :pancakes

def pancakes
  if new_record?
    # Not in the database yet.
  elsif changed?
    # Already exists but it has unsaved changes.
  end
end

You can use new_record? to see if you have a brand new object and changed? to see if anything has changed:

before_save :pancakes

def pancakes
  if new_record?
    # Not in the database yet.
  elsif changed?
    # Already exists but it has unsaved changes.
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文