首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

named_scope or scope 是什么?lambda 如何用

2012-07-20 
named_scopeorscope 是什么?lambda 怎么用rails2.*里面的写法 named_scoperails3.*里面 去掉 named_就直接

named_scope or scope 是什么?lambda 怎么用
rails2.*  里面的写法 named_scope 

rails3.*  里面 去掉 named_  就直接 scope

如:rails 2.
class Item
  named_scope :red, :conditions => { :colour => 'red' }
  named_scope :since, lambda {|time| {:conditions => ["created_at > ?", time] }}
end

rails 3.

class Item
  scope :red, :conditions => { :colour => 'red' }
  scope :since, lambda {|time| {:conditions => ["created_at > ?", time] }}
end


然而,以上使用的conditions的hash将会在Rails3.1中移除,所以我们需要这么写:
class Item
  scope :red, where(:colour => 'red')
  scope :since, lambda {|time| where("created_at > ?", time) }
end 


scope 里面的 lambda 是需要有参数的。
lambda 是对象而不是方法,不能像方法一样被调用。
lambda 的方法名可以 用 -> 代替
可以把大括号里面的参数,移到 大括号前
-> (time) { where ("created_at > ?", time) }

热点排行