前提・実現したいこと
画面にby+おのおのユーザー名という形<link_to>を使ってやりたいが
どうしてもエラーが出てしまう
現状のコードのままだと
*test*だけだがこれを
*bytest*といった形にしたい、ユーザーが変われば
*bysample*になるように
html
1<main class="main"> 2 <div class="inner"> 3 <div class="prototype__wrapper"> 4 <p class="prototype__hedding"> 5 <%= "プロトタイプのタイトル"%> 6 </p> 7 8 <%= link_to @prototype.user.name , prototype_path(@prototype.id), class: :prototype__user %> 9ここの部分をどうにかしたいです
コントローラーです
ruby
1class PrototypesController < ApplicationController 2 3 def index 4 @prototypes = Prototype.all 5 end 6 7 def new 8 @prototype = Prototype.new 9 end 10 11 def create 12 @prototype = Prototype.new(prototype_params) 13 if @prototype.save 14 redirect_to root_path 15 else 16 render :new 17 end 18 end 19 20 def show 21 @prototype = Prototype.find(params[:id]) 22 end 23 24 def edit 25 @prototype = Prototype.find(params[:id]) 26 end 27 28 def update 29 prototype = Prototype.find(params[:id]) 30 if prototype.update(prototype_params) 31 redirect_to prototype_path 32 else 33 render :edit 34 end 35 end 36 37 def destroy 38 prototype = Prototype.find(params[:id]) 39 prototype.destroy 40 redirect_to root_path 41 end 42 43 private 44 def prototype_params 45 params.require(:prototype).permit(:title, :catct_copy, :concept, :image).merge(user_id: current_user.id) 46 end 47 48end
https://teratail.com/help/question-tips#questionTips3-4-2
回答1件
あなたの回答
tips
プレビュー