在RoR的所有教程中,我看到了代码程序选择使用Proc.new的情况,当看起来它是不必要的,而且没有吸引力.
例如,这里是一个放置在模型中的回调,一个使用Proc.new另一个可能是做同样的事情:
class Order < ActiveRecord::Base before_save :normalize_card_number,:if => Proc.new { |order| order.paid_with_card? } end class Order < ActiveRecord::Base before_save :normalize_card_number,:if => "paid_with_card?" end
那有什么区别呢?为什么使用Proc?他们不是叫“付费_卡”吗?方法?
提前致谢
解决方法
在上面的例子中,使用条件方法的符号可能是最好的选择.
class Order < ActiveRecord::Base before_save :normalize_card_number,:if => :paid_with_card? end
字符串选项使用eval来评估字符串中的Ruby代码.所以个人来说,如果写一个短的内联条件,我更喜欢使用一个符号来调用一个方法或者一个Proc.
Using a Proc object gives you the ability to write an inline condition instead of a separate method. This option is best suited for one-liners.
我认为使用Proc可能会更好地说明这一点:
class Order < ActiveRecord::Base before_save :normalize_card_number,:if => Proc.new { |order| order.payment_type == "card" } end
这可能会消除pay_with_card的需要?方法.