我可以在 Ruby 中执行此操作吗?
目前我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
唔。如果您知道
errors.blank?
将为 true,除非第一个条件触发:更新: 啊哈,您愿意定义一个方法。
Proc
对象怎么样?它比这里的方法更好,因为如果Proc
块返回,则调用将从周围的方法返回。请注意,您不需要
return false
,因为普通的return
将返回nil
,这已经足够好了,除非有虐待狂正在做类似f().class == NilClass
的事情。 :-)Hmm. If you know
errors.blank?
will be true unless the first condition fires then:Update: Aha, you are willing to define a method. How about a
Proc
object? It's better than a method here in that if theProc
block returns then the invocation will return from the surrounding method.Note that you don't need to
return false
as a plainreturn
will returnnil
and that will be good enough unless some sadist is doing something likef().class == NilClass
. :-)您可以利用布尔逻辑运算符的工作原理并执行以下操作:
不太清楚,我不建议使用它。此外,如果
errors.add_to_base
返回“虚假”的内容,则不会发生返回 false 的情况。请记住:“在编写代码时,就好像维护您代码的人是一个知道您住在哪里的暴力精神病患者一样”
You can take advantage of how the boolean logic operators work and do something like this:
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”