0

私はRubyonRails(およびプログラミング)に不慣れであり、これはおそらく本当にばかげた質問です。Rails 3.2を使用しており、acts_as_taggable_onを使用して記事にタグを生成し、それらのタグを記事のインデックスに表示し、ページをクリック可能なリンクとして表示しようとしています。

記事の表示ページとインデックスページの両方でタグをクリックできますが、リンクはインデックスページに戻るだけで、タグ名に従って並べ替えられません。私はインターネットを精査し、さまざまなソースから以下のコードをつなぎ合わせましたが、明らかに何かが欠けています。

一見限られた知識を使い果たしたので、どんな助けでも大歓迎です!ありがとう。

これが私が持っているものです:

class ArticlesController < ApplicationController
    def tagged
        @articles = Article.all(:order => 'created_at DESC')
        @tags = Article.tag_counts_on(:tags)
        @tagged_articles = Article.tagged_with(params[:tags])  
        respond_to do |format|
          format.html # index.html.erb
          format.json { render :json => @articles }
        end 
      end

     def index
        @articles = Article.paginate :page => params[:page], :per_page => 3    
        @tags = Article.tag_counts_on(:tags)
        respond_to do |format|
          format.html # index.html.erb
          format.json { render json: @articles }
        end
      end

module ArticlesHelper
  include ActsAsTaggableOn::TagsHelper
end

class Article < ActiveRecord::Base
  acts_as_ordered_taggable
  acts_as_ordered_taggable_on :tags, :location, :about 
  attr_accessible :tag_list
  scope :by_join_date, order("created_at DESC")
end

article/index.html.erb
<% tag_cloud(@tags, %w(tag1 tag2 tag3 tag4)) do |tag| %>
<%= link_to tag.name, articles_path(:id => tag.name) %>
<% end %>

article/show.html.erb
<%= raw @article.tags.map { |tag| link_to tag.name, articles_path(:tag_id => tag) }.join(" | ") %>

ルート.rbファイルスニペット

  authenticated :user do
    root :to => 'home#index'
  end

  devise_for :users
    resources :users, :only => [:show, :index]

  resources :images
  resources :articles
4

1 に答える 1