現在railsでtweet投稿での削除が上手くできません
お力添えお願いします
発生している問題・エラーメッセージ
<%= link_to tweet_path(@tweet.id), class: "btn trash", method: :delete do %> <i class="fas fa-trash"></i> <% end %>
ここの部分が悪いのですがどのように直せばいいのでしょうか?
該当のソースコード
routes.rb
Rails.application.routes.draw do root 'tweets#index' resources :tweets resources :events devise_for :users, controllers: { registrations: 'users/registrations' } # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html end
tweets_controller.rb
class
1 before_action :authenticate_user!, except: [:index, :show] 2 def index 3 @tweet = Tweet.includes(:user).order("created_at DESC") 4 end 5 6 def new 7 @tweet = Tweet.new 8 end 9 10 def create 11 @tweet = Tweet.new(tweet_params) 12 if @tweet.save 13 redirect_to root_path, notice: '投稿しました!' 14 else 15 render'new' 16 end 17 end 18 19 def destroy 20 @tweet = Tweet.find(params[:id]) 21 @tweet.destroy 22 redirect_to '/tweet/index' 23 end 24 25 private 26 def tweet_params 27 params.require(:tweet).permit(:picture, :comment, :user_id) 28 end 29 end 30 31
index.html.erb
<li class="box"> <%= link_to tweet_path(@tweet.id), class: "btn trash", method: :delete do %> <i class="fas fa-trash"></i> <% end %> </li>
足らない情報がありましたら教えてください
よろしくお願いします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。