Ruby on Rails development from scratch (Windows) (vii)-Create online shopping page

Source: Internet
Author: User
Tags command line ruby on rails

In the previous essay, we created a maintenance list page for the products as shown:

This time we use the products list maintained above to create a shopping page for end users.

1. Create controller (Controller), named Store, we create it through the command line:

Depot> Ruby script/generate Controller Store Index

Open the Store_controller.rb file in the. rails_apps\depot\app\controllers directory and add code to it:

def index
@products = Product.salable_items
End

Of course, we also need to define the Salable_items method for product, open the Product.rb file in the Rails_apps\depot\app\models directory, and add code:

def Self.salable_items Find
(: All,
: Conditions => "date_available <= Now ()",
: Order => "Date_ Available desc ") End

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.