ruby
1コード 2 3class CommentsController < ApplicationController 4 def index 5 end 6 def new 7 @comments =Comment.all 8 end 9 def create 10 Comment.create(comment_params) 11 end 12def destroy 13 @comment = Comment.find(params[:id]) 14end 15 def purchase 16 Payjp.api_key = ENV["PAYJP_SECRET_KEY"] 17 Payjp::Charge.create( 18 :amount => 500, 19 :card => params['payjp-token'], 20 :currency => 'jpy' 21 ) 22 end 23 24 private 25 def comment_params 26 params.permit(:comment, :address) 27 end 28end 29 30```**ボールドテキスト** 31 32```ruby 33comments#new! 34<div class =space></div> 35<% @comments.each do |t| %> 36<p><%=t.address%>---<%=link_to '削除',"/comments/#{@comment.id}", method: :delete%></p> 37<p><%=t.comment%></p> 38<%end%>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/17 14:39