我可以在 Ruby 中执行此操作吗?

发布于 2024-10-26 04:25:52 字数 226 浏览 1 评论 0原文

目前我有以下 2 行代码

errors.add_to_base I18n.t :error_message if value != 1
return false if !errors.blank?

是否可以将其压缩为 1 行代码?我需要在多个具有不同错误消息和条件的地方执行此操作。另外,“return false”是为了停止 ActiveRecord 生命周期的流动。

Currently I have the following 2 lines of code

errors.add_to_base I18n.t :error_message if value != 1
return false if !errors.blank?

Is it possible to condense this into 1 line of code? I need to do this in multiple places with different error message and condition. Also, "return false" is to stop the flow of an ActiveRecord lifecycle.

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

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

发布评论

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

评论(2

っ〆星空下的拥抱 2024-11-02 04:25:52

唔。如果您知道 errors.blank? 将为 true,除非第一个条件触发:

(errors.add_to_base I18n.t :error_message; return) if value != 1

更新: 啊哈,您愿意定义一个方法。 Proc 对象怎么样?它比这里的方法更好,因为如果 Proc 块返回,则调用将从周围的方法返回。

test = Proc.new do |cond, msg|
  errors.add_to_base I18n.t msg if cond
  return unless errors.blank?
end
# ...
test.call value != 1, :error_message

请注意,您不需要return false,因为普通的return将返回nil,这已经足够好了,除非有虐待狂正在做类似 f().class == NilClass 的事情。 :-)

Hmm. If you know errors.blank? will be true unless the first condition fires then:

(errors.add_to_base I18n.t :error_message; return) if value != 1

Update: Aha, you are willing to define a method. How about a Proc object? It's better than a method here in that if the Proc block returns then the invocation will return from the surrounding method.

test = Proc.new do |cond, msg|
  errors.add_to_base I18n.t msg if cond
  return unless errors.blank?
end
# ...
test.call value != 1, :error_message

Note that you don't need to return false as a plain return will return nil and that will be good enough unless some sadist is doing something like f().class == NilClass. :-)

时光病人 2024-11-02 04:25:52

您可以利用布尔逻辑运算符的工作原理并执行以下操作:

value != 1 && errors.add_to_base I18n.t :error_message && return false

不太清楚,我不建议使用它。此外,如果 errors.add_to_base 返回“虚假”的内容,则不会发生返回 false 的情况。

请记住:“在编写代码时,就好像维护您代码的人是一个知道您住在哪里的暴力精神病患者一样”

You can take advantage of how the boolean logic operators work and do something like this:

value != 1 && errors.add_to_base I18n.t :error_message && return false

Not very clear, I wouldn't recommend using it. Also if errors.add_to_base returns something that's "falseish" the return false wouldn't happen.

Remember: "Always code as if the person who will maintain your code is a violent psychopath who knows where you live”

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文