ブログを作っています。
ヘッダーにカテゴリーを設けて、クリックするとそのカテゴリーに紐づいている記事を一覧表示させる機能を作りました。
ここまでは良いのですが、この状態からヘッダーのカテゴリーをもう一度クリックすると
このようにURLが http://localhost:3000/categories/categories/6 というふうになってしまいます。
http://localhost:3000/categories/6 というふうにしたいです。
お恥ずかしながら、ググり方もよくわかりませんでした。
よろしくお願いいたします。
routes
1Rails.application.routes.draw do 2 3 root to: "tweets#index" 4 resources :tweets do 5 resources :comments 6 end 7 8 resources :categories 9end 10
controller
1class TweetsController < ApplicationController 2 before_action :set_tweet, only: [:show, :edit, :update, :destroy] 3 4 def index 5 @tweets = Tweet.all.page(params[:page]).per(6).order(id: "DESC") 6 @categories = Category.all 7 end 8 9 def show 10 @tweets = Tweet.all.page(params[:page]).per(6).order(id: "DESC") 11 @categories = Category.all 12 end 13 14 def new 15 @tweet = Tweet.new 16 @categories = Category.all 17 end 18 19 def edit 20 @categories = Category.all 21 end 22 23 def create 24 @tweet = Tweet.new(tweet_params) 25 26 respond_to do |format| 27 if @tweet.save 28 format.html { redirect_to @tweet, notice: 'Tweet was successfully created.' } 29 format.json { render :show, status: :created, location: @tweet } 30 else 31 format.html { render :new } 32 format.json { render json: @tweet.errors, status: :unprocessable_entity } 33 end 34 end 35 end 36 37 def update 38 respond_to do |format| 39 if @tweet.update(tweet_params) 40 format.html { redirect_to @tweet, notice: 'Tweet was successfully updated.' } 41 format.json { render :show, status: :ok, location: @tweet } 42 else 43 format.html { render :edit } 44 format.json { render json: @tweet.errors, status: :unprocessable_entity } 45 end 46 end 47 end 48 49 def destroy 50 @tweet.destroy 51 respond_to do |format| 52 format.html { redirect_to tweets_url, notice: 'Tweet was successfully destroyed.' } 53 format.json { head :no_content } 54 end 55 end 56 57 private 58 def set_tweet 59 @tweet = Tweet.find(params[:id]) 60 end 61 62 def tweet_params 63 params.require(:tweet).permit(:title, :content, :image, category_ids: []) 64 end 65end 66
controller
1class CategoriesController < ApplicationController 2 def show 3 @tweets = Category.find(params[:id]) 4 @categories = Category.all 5 end 6end 7
view
1<div class="navbar1 navbar-light"> 2 〜記事一覧〜 3</div> 4 5<div class="album py-5 bg-light"> 6 <div class="container"> 7 <div class="row"> 8 <% @tweets.tweets.each do |tweet| %> 9 <div class="col-md-4"> 10 <%= link_to tweet do %> 11 <div class="card mb-4 box-shadow"> 12 <div class="card-body"> 13 <% if tweet.image? %> 14 <%= image_tag tweet.image.url, class: "content-image" %> 15 <% else %> 16 <%= image_tag 'klimt.jpg', class: "content-image" %> 17 <% end %> 18 <div class="content-title"> 19 <b><%= tweet.title %></b> 20 </div> 21 <%# <div class="d-flex justify-content-between align-items-center"> 22 <small class="text-muted">9 mins</small> 23 </div> %> 24 </div> 25 </div> 26 <% end %> 27 </div> 28 <% end %> 29 </div> 30 <%# <%= paginate @tweets %> 31 </div> 32</div>
たぶんリンク先が "categories/6" になってるんだと思いますが、先頭に / をつけて "/categories/6" にする必要があると思います。詳しくは HTML の相対リンク(相対パス)についてお調べください。
https://webliker.info/78726/
https://webcode-lab.com/topics/blogid/10/
あなたの回答
tips
プレビュー