0

これは私のテーブルです:

index.html.erb:



  <center><table border="1" cellspacing="0" cellpadding="10" id="c"></center>
    <h3><center>List Of Products</h3></center>

    <tr>
    <th>S.No</th>
    <th>Products</th>
    <th>Availble Quantity</th>
    <th>Price(each per kg/qua)</th>
    <th>Quantity Requried<br>(enter required qua as per kg/qua)</br></th>
    </tr >
    <% @product.each do |product| %> 

    <tr>
    <td><center><%= product.id %></center></td>
    <td><center><%= check_box_tag "name" %> <%= product.name %></center></td>
    <td><center><%=product.quantity %></center></td>
    <td><center><%= product.price %></center></td>
    <td><center><input type= "text" style="width:50px;"></center></td>
    </tr>
    <% end %>  
    </table><br><br>
    <%= link_to "ADD",checkout_index_path, class: "btn btn-small btn-primary" %>

私の質問は、チェックボックスのいずれかを選択すると、選択したフィールドが次のページに表示されるはずです(つまり、index.html.erb/checkout)

私の index.html.erb/checkout ページ:

 <p id="notice"><%= notice %></p>
    <h5>Slected products are:</h5>
    <%= link_to 'Continue Online Shopping', products_path %>

たとえば、アイテム 1 を選択して追加ボタンをクリックすると、選択したアイテムがチェックアウト ページに表示されます。助けて!!!!!

選択したアイテムは、この index.html.erb/checkout ページに表示されます

4

1 に答える 1