以下两个范围生成相同的结果,哪种语法更可取,还有其他区别吗?
scope :paid,lambda { |state| where(state: state) } scope :paid,->(state) { where(state: state) }
解决方法
出于可读性原因,最好使用新语法 – > (在Ruby 1.9中引入)用于单行块和lambda用于多行块.例:
# single-line l = ->(a,b) { a + b } l.call(1,2) # multi-line l = lambda do |a,b| tmp = a * 3 tmp * b / 2 end l.call(1,2)
这似乎是在bbatsov/ruby-style-guide年建立的社区公约.
所以,在你的情况下,会更好:
scope :paid,->(state) { where(state: state) }