Rails 3 中的default_scope
我知道named_scope已更改为rails 3中的范围。
如何在rails 3中执行default_scope,我进行了很好的谷歌搜索,但没有找到默认范围的任何内容。
I know named_scope has been changed to scope in rails 3.
How do I perform default_scope in rails 3, I've had a good google but found nothing for defaults scopes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
default_scope 在 Rails 3.0 中可用,请参阅以下内容
default_scope is available in Rails 3.0, see the following
这是另一个指针: AR::Base.default_scope< 的 api 文档/a>
Here's another pointer: the api doc for AR::Base.default_scope
default_scope where(:abc => val)
default_scope where(:abc => val)