前提・実現したいこと
Ruby on Railsで検索アプリを制作しております。その際にチェックボックスで作成しDBに保存した@ingredient[:list]のデータをshowで受け取りurlに代入し検索を行いたいです。
urlは省略しています。
Ruby
1 2require 'json' 3require 'net/http' 4require 'uri' 5 6 7class IngredientsController < ApplicationController 8 9 10 def index 11 @ingredient = Ingredient.new 12 @ingredients = Ingredient.includes(:user) 13 14 end 15 def new 16 @ingredient = Ingredient.new 17 end 18 19 20 def show 21 22 @ingredient = Ingredient.find(params[:list]) 23 uri = URI.parse("https://categoryId=#{params[list]}") 24 json = Net::HTTP.get(uri) 25 @result = JSON.parse(json) 26 @result = @result["result"] 27 28 end 29 30 def update 31 @item.update(like) 32 33 end 34 35 def create 36 @ingredient = Ingredient.new 37 end 38 39 def like 40 41 params[:list].each do | di1,di2 | 42 43 # チェックボックスにチェックがついている場合 44 if di2 == "1" 45 # DBのtitleカラムにタイトルを格納し保存 46 @ingredient = Ingredient.new(list:di1) 47 @ingredient.save 48 49 end 50 end 51 redirect_to ("/ingredients/show") 52 53 end 54 55 56 private 57 58 def ingredient_params 59 params.require 60 permit(:list ) 61 end 62end 63 64 65
HTML
1<div class='select-reason-contents'> 2 <h2 class='title'> 3 食材の選択 4 </h2> 5 <%= form_tag("/ingredients/like") do %> 6 <ul class='reason-lists'> 7 <div class='reason-lists-list'> 8 <li class='list1'> 9 <div class="image-box" > 10 <%= check_box "list", "12-454-1525" %> 11 <h3 class='reason-list-text'> 12 <span class='reason-list-blue-text'>トマト</span> 13 </h3> 14 </div> 15 </li> 16 </div> 17 </ul> 18 <div class='purchase-btn'> 19 <input type="submit" value="検索する" class='purchase-btn-text'> 20 <%= image_tag 'camera.png' , size: '185x50' ,class: "purchase-btn-icon" %> 21 <% end %> 22 </div> 23 24 25
試したこと
bunding.pryなどでデバックを行った結果、サーバーにデータの保存等は行われておりshowに値を渡す、もしくはサーバーからlistの値の呼び出しを行いたいです。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。