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) }
分享到:
相关推荐
`scope_guard`可以通过`std::function`或模板参数接受任何可调用对象,包括成员函数指针、Lambda表达式等。这提供了极大的灵活性,可以适应各种不同的清理需求。 总的来说,`scope_guard`是C++中一种强大的工具,它...
- 在模型类中定义`scope`时,可以使用lambda表达式来指定查询条件。 - 可以通过定义多个`scope`来组合使用,创建更复杂的查询逻辑。 - **调用`scope`**: - 调用`scope`时,可以直接在模型类上调用相应的类方法...
通过使用`named_scope`方法,可以创建可复用的查询片段,这些查询片段可以像方法一样被调用,极大地提高了代码的可读性和可维护性。例如: ```ruby class Post named_scope :published, lambda { {:conditions =>...
使用 lambda 在 Rails 中命名作用域 在 Rails 4 中命名范围需要使用 ruby lambda语法; 它们使您可以非常轻松地自定义复杂的查询。 查询可以在模式中定义,然后可以像ActiveRelation方法一样调用,另一方面,您也...
Python ZTM备忘单 :laptop: :... 函数: Functions , Lambda , Comprehensions , Map,Filter,Reduce , Ternary , Any,All , Closures , Scope 高级Python: Modules , Iterators , Generators , Decorat
- **Scope:** Scope defines the visibility and accessibility of variables within a function or a module. - **Lambda Expressions:** Lambda expressions are anonymous functions that can be used wherever a...
- **5.2.2 Lambda-Expressions Lambda 表达式**:详细说明了Lambda表达式的定义及其用途。 - **5.3 Top-Level Forms 顶级形式** - **5.3.1 Defining Named Functions 定义命名函数**:解释了如何定义命名函数。 -...