微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails-3 – named_scope和.first?

我可以返回一个对象集合,只有一个(:limit => 1),但有没有办法只返回.first()对象,而不是在集合中?

named_scope :profile,:conditions => {:association => 'owner',:resource_type => 'Profile'},:limit => 1    # => collection of 1 profile but I want the profile only NOT in a collection or array

解决方法只是将.first()应用于结果,但我只想清理代码并使其不易出错.

解决方法

您可能需要创建一个方法

def self.profile
  where(:association => 'owner',:resource_type => 'Profile').first
end

请注意,对于Rails 3,您应该使用where(…)语法,并且在执行.first时,您不需要指定限制.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐