我正在尝试为我的所有文章定义库存,但我想排除使用参数发送给我的文章。
这是关系的样子:
Article
has_many :tags, through: :articletags
ArticleTags
belongs_to :article
belongs_to :tags
Tags
has_many :article, through: articletags
这是一种在我的模型中定义没有标签的方法:
def self.by_not_tags(tag)
joins(:tags).where('tags.title != ?', tag)
end
在我看来,我是这样称呼它的:
<%= link_to (tag.title), articles_path(:scope => tag.title) %>
这是我的控制器:
def custom
if params[:scope].nil?
@articles = Article.all(:order => 'created_at DESC')
else
@articles = Article.by_tags(params[:scope])
@articles2 = Article.by_not_tags(params[:scope])
end
end
目标是首先查看所有带有标签的文章,然后显示没有该标签的其他文章,因此我没有重复。
我的问题在于连接,但我不确定如何找到没有标签的文章。也许一个 except 会起作用,但我不确定什么样的查询会适用。