Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
544 views
in Technique[技术] by (71.8m points)

activerecord - Rails includes with scope

I have a model called Author. An author has many Articles. Articles have a scope called .published that does: where(published: true).

I want to load the author, with the published articles. I tried:

Author.includes(:articles.published).find(params[:author_id])

But that throws an error: undefined method 'published'. Any idea?

question from:https://stackoverflow.com/questions/26159533/rails-includes-with-scope

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think the best solution would be:

Author.includes(:articles).where(:articles=>{published: true}).find(params[:author_id])

Or you can create scope:

class Author < ActiveRecord::Base 
    scope :with_published_articles, -> { includes(:articles).where(articles: { published: true}) }
end

and then:

Author.with_published_articles.find(params[:author_id].to_s)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...