加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-17 04:05:18 所属栏目:百科 来源:网络整理
导读:我可以返回一个对象集合,只有一个(:limit = 1),但有没有办法只返回.first()对象,而不是在集合中? named_scope :profile,:conditions = {:association = 'owner',:resource_type = 'Profile'},:limit = 1 # = collection of 1 profile but I want the profi
我可以返回一个对象集合,只有一个(: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时,您不需要指定限制.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读