0

我正在使用 Rails 进行敏捷 Web 开发的章节练习。这是一家商店,您可以将产品添加到购物车中。购物车内的产品称为 LineItem。您可以删除购物车中的单个订单项。当最后一个订单项被删除时,我希望整个购物车都被销毁。我的代码不起作用:

购物车控制器

def destroy
  @cart = current_cart
  @cart.destroy
  session[:cart_id] = nil

  respond_to do |format|
    format.html { redirect_to store_path }
    format.json { head :no_content }
  end
end

LineItems 控制器

def destroy
  @cart = current_cart
  @line_item = LineItem.find(params[:id])
  quantity = @line_item.quantity

  if quantity > 1
    quantity -= 1
    @line_item.update_attribute(:quantity, quantity)
  else
    @line_item.destroy
  end

  respond_to do |format|
    format.html {
      if @cart.line_items.empty?
        @cart.destroy
      else
        redirect_to @cart
      end
    }
    format.json { head :no_content }
  end
end

这会产生以下错误:

Template is missing

Missing template line_items/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in: * "/home/mike/Projects/depot/app/views"

当购物车被毁坏时,我想在 store_path 结束。

谢谢,迈克

4

1 回答 1

0

见补充(作为评论):

  if @cart.line_items.empty?
    @cart.destroy
    # redirect_to store_path
  else
于 2012-08-13T13:33:15.410 回答