Rails购物车不添加和/或显示正确的产品

时间:2016-10-05 20:27:26

标签: ruby-on-rails

我正在通过youtube教程构建一个非常基本的购物车。我遇到的问题是,虽然添加产品的链接存在并重定向到购物车而没有引发异常,但它总是添加并显示列表中的第一个产品(如果我销毁第一个产品,那么下一个产品一个出现了。)

我知道问题在于add方法,它不会存储多个产品ID。

cart_controller.rb

class CartController < ApplicationController

def add
id = params[:id]
if session[:cart] then
  cart = session[:cart]
else
  session[:cart] = {}
  cart = session[:cart]
end

if  cart[:id] then
    cart[:id] = cart[:id] + 1
else
    cart[:id] = 1
end
redirect_to cart_url

end

def clearCart
session[:cart] = nil
redirect_to cart_url
end


def index
  if session[:cart] then
    @cart = session[:cart]
  else
    @cart = {}
  end
end

end

购物车index.html

<%= link_to 'Empty Your Cart', cart_clear_path %>


 <% @cart.each do | id, quantity| %>
  <% product = Product.find_by(id) %>
  <ul>
    <li><%= link_to product.title, product %></li>

  </ul>

<% end %>

产品index.html

`<% @products.each do |product| %>`
    <tr>  
    <td><%= product.title %></td>
    <td><%= product.description %></td>
    <td><%= product.image_url %></td>
    <td><%= product.price %></td>
            <td><%= product.category %></td>
                    <td><%= product.subcategory %></td>
    <td><%= link_to 'Show', product %></td>
    <td><%= link_to 'Edit', edit_product_path(product) %></td>
    <td><%= link_to 'Destroy', product, method: :delete, data: { confirm:      'Are you sure?' } %></td>
    <td><a href="/cart/<%= product.id %>">Add to Cart</a></td>
  </tr>
<% end %>

1 个答案:

答案 0 :(得分:0)

自己找到解决方案。实际上,add方法存在问题。 :id param已存储在id变量中。

if  cart[id] then
  cart[id] = cart[id] + 1
else
  cart[id] = 1

还修改了产品变量。

product = Product.find_by(id: id)