私は自分の記事を洗練させ、ユーザーが何を見たいかを柔軟に決定できるようにしようとしています。
ここに関係のあるモデル
Article
has_many :tags, through: :articletags
ArticleTags
belongs_to :article
belongs_to :tags
Tags
has_many :article, through: articletags
これで、アイデアは記事に使用され、側面にtags.titleが表示され、tags="world"であるArticleでページが更新されます。今、私はスコープでこれを行おうとしていますが、それを行う方法がわかりません。ここに私のモデルの私のスコープ
scope :by_tags, where(title => ?, "world news")
ここで私はそれをどのように呼ぶか
<%= link_to (tag.title), articles_path(:scope => "test") %>
しかし、明らかにそれは機能しません。どうすれば修正できますか?