前提・実現したいこと
スコア管理アプリを作成中です。ログインしているユーザーのスコアを一括で削除させたいです。
どのように記述するのか教えて下さい。
該当のソースコード
controler
ruby
1class ScoresController < ApplicationController 2 before_action :authenticate_user! 3 4 5 def index 6 @score = Score.new 7 @scores = current_user.scores.order("created_at DESC") 8 @chart = current_user.scores.pluck(:created_at, :score) 9 end 10 11 def create 12 @score = Score.new(scores_params) 13 if @score.save 14 redirect_to root_path 15 else 16 17 render :index 18 end 19 end 20 21 22 def destroy 23 @score = Score.find(params[:id]) 24 if params[:all].present? 25 @score.destroy_all 26 else 27 @score.destroy 28 end 29 redirect_to root_path 30 end 31 32 private 33 34 def scores_params 35 params.require(:score).permit(:score).merge(user_id: current_user.id) 36 end 37end
view
ruby
1 <%= form_with model: @score, class: 'form', local: true do |f| %> 2 <div class="form-input"> 3 <%= f.number_field :score, step: "0.1", class: 'form-score', placeholder: 'type a score' %> 4 <%= f.submit '送信', class: 'form-submit' %> 5 </div> 6<% end %> 7 8<%= javascript_include_tag "//www.google.com/jsapi" %> 9<%= line_chart @chart, points: false, series: false, curve: false, discrete: true, xtitle: "日付", ytitle: "スコア", width: "100%", height: "500px", decimal: ",", min: 400, max: 654 %> 10 11 12<div class="sccore_destroy"> 13 <%= link_to "一番新しいスコアを削除", score_path(@scores.ids), method: :delete %> 14 <%= link_to "全てのスコアを削除", score_path(@scores.ids, all: true) %> 15 16<div id="score_b"> 17 <%= render @scores%> 18</div>
routes
ruby
1Rails.application.routes.draw do 2 devise_for :users 3 root to: "scores#index" 4 resources :scores 5end
試したこと
ご回答頂いた通りcontrollerに
ruby
1 if params[:all].present?
で条件分岐いたしましたが
ruby
1Unknown action 2The action 'show' could not be found for ScoresController
というエラーが出ました。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
mysql
ruby ver.6.0.0
回答1件
あなたの回答
tips
プレビュー