Ruby on Rails development from scratch (Windows) (10)-Empty cart and format amount

Source: Internet
Author: User
Tags empty error handling ruby on rails

In the last section, we added error handling to the shopping cart, this time to format the empty cart and amount.

To this moment we have not added any processing to the "Empty cart" link that displays the Shopping information list page. We first implement this function:

1. Add the Empty_cart method to the Store_control.rb file:

def empty_cart
find_cart.empty!
Flash[:notice] = ' Your cart is now empty '
redirect_to (: Action => ' index ')
end

2. Next is the cart.rb file, adding the following code:

def empty!
@items = []
@total_price = 0.0
End

Well, that's simple, now click on the empty cart link to reposition to the index page and display a message, as shown in figure:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.