Rails 4 default scope

99封情书 提交于 2019-11-26 22:36:58

问题


In my Rails app have a default scope that looks like this:

default_scope order: 'external_updated_at DESC'

I have now upgraded to Rails 4 and, of course, I get the following deprecation warning "Calling #scope or #default_scope with a hash is deprecated. Please use a lambda containing a scope.". I have successfully converted my other scopes but I don't know what the syntax for default_scope should be. This doesn't work:

default_scope, -> { order: 'external_updated_at' }

回答1:


Should be only:

class Ticket < ActiveRecord::Base
  default_scope -> { order(:external_updated_at) } 
end

default_scope accept a block, lambda is necessary for scope(), because there are 2 parameters, name and block:

class Shirt < ActiveRecord::Base
  scope :red, -> { where(color: 'red') }
end



回答2:


This is what worked for me:

default_scope  { order(:created_at => :desc) }



回答3:


This also worked for me:

default_scope { order('created_at DESC') }




回答4:


This worked from me (just for illustration with a where) because I came to this topic via the same problem.

default_scope { where(form: "WorkExperience") }



回答5:


You can also use the lambda keyword. This is useful for multiline blocks.

default_scope lambda {
  order(external_updated_at: :desc)
}

which is equivalent to

default_scope -> { order(external_updated_at: :desc) }

and

default_scope { order(external_updated_at: :desc) }



回答6:


This works for me in Rails 4

default_scope { order(external_updated_at: :desc) }



回答7:


default_scope -> { order(created_at: :desc) }

Don't forget the -> symbol




回答8:


default_scope { 
      where(published: true) 
}

Try This.



来源:https://stackoverflow.com/questions/18506038/rails-4-default-scope

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!