Sample in Rails 2.0

本文通过实战演示了如何使用 Rails 2.0 构建 Depot 应用程序,包括设置 MySQL 数据库、创建 RESTful 产品模型、添加验证及美化 HTML 页面等关键步骤。

Depot Sample in Rails 2.0, Step 1

关键字: depot, rails2.0

Depot for MySQL5.0, Rails2.0 in WindowXP,
# means comments, Hope you can enjoy it.

Objective: To build the basic skeleton of depot


1. create depot rails project
rails depot

2. edit config/database.yml
development:
  adapter: mysql
  database: depot_development
  username: root
  password: admin
  host: 127.0.0.1

test:
  adapter: mysql
  database: depot_test
  username: root
  password: admin
  host: 127.0.0.1

production:
  adapter: mysql
  database: depot_production
  username: root
  password: admin
  host: 127.0.0.1


3. create database defined in database.yml
rake db:drop:all #drop database defined in database.yml
rake db:create:all #create database defined in database.yml
rake db:version #print database version

#rake db:rollback #rollback database to last version, do not need to type this in this sample

4. create product RESTful
ruby script/generate scaffold product title:string description:text image_url:string
#Remember now that Rails 2.0 is RESTful by default. The only difference here is that the ‘scaffold’ behaves like the ‘scaffold_resource’ we had before, and the old non-RESTful scaffold is gone. You also don’t have the ActionController class method ‘scaffold’ that dynamically populated your empty controller with default actions. So, everything scaffold we do is RESTful now. It will create the usual suspects: Controller, Helper, Model, Migration, Unit Test, Functional Test.
#Please check app/controllers/products_controller.rb for confirm

5. Migrate product into database.
rake db:migrate
#Please check the coressponding database with the table named "products" for confirm

6. start Webrick server.
ruby script/server

7. test depot in web browser.
http://localhost:3000/products
 

Depot Sample in Rails 2.0, Step 2

关键字: rails2.0 depot
Objective: To add a new column in pre-built product

1. create a migration task: add a column for product
ruby script/generate migration add_price

2. edit db/migrate/*****_add_price.rb
class AddPrice < ActiveRecord::Migration

          def self.up

            add_column  :products,  :price, :decimal, :precision => 8,  :scale => 2, :default => 0

          end



          def self.down

            remove_column :products,  :price

          end

        end



3. migrate the new product into database
rake db:migrate
#Please confirm coressponding table in database.

4. rebuild scaffold product
ruby script/destroy scaffold product
ruby script/generate scaffold product title:string price:float description:text image_url:string

#the scaffold product should be automatically rebuilt, but actually it did not on my machine. If someone can help me out, appreciate.

5. start Webrick server.
ruby script/server

6. test depot in web browser.
http://localhost:3000/products

Depot Sample in Rails 2.0, Step 3

关键字: rails2.0 depot
Objective: To add validation for product input

1. add validation for product
class Product < ActiveRecord::Base

          

          validates_presence_of :title, :description, :image_url

          

          validates_numericality_of :price

          

          validate :price_must_be_at_least_a_cent





          validates_uniqueness_of :title





          validates_format_of :image_url,

                              :with    => %r{\.(gif|jpg|png)$}i,

                              :message => 'must be a URL for GIF, JPG ' + 'or PNG image.(gif|jpg|png)'



          protected 

          def price_must_be_at_least_a_cent

            errors.add(:price, 'should be at least 0.01') if price.nil? ||

                               price < 0.01

          end

        end



2. That is it?!  That is it!!! Just try it, you even do not need to restart server!   ,my dear J2EE...
 

Depot Sample in Rails 2.0, Step 4

关键字: rails2.0 depot
Objective: To decorate HTML page

1. add some test data
ruby script/generate migration add_test_data

2. edit db/migrate/*****_add_test_data.rb
class AddTestData < ActiveRecord::Migration

          def self.up

            Product.delete_all



            Product.create(:title => 'Pragmatic Project Automation',

            :description => 

            %{<p>

               <em>Pragmatic Project Automation</em> shows you how to improve the 

               consistency and repeatability of your project's procedures using 

               automation to reduce risk and errors.

              </p>

              <p>

                Simply put, we're going to put this thing called a computer to work 

                for you doing the mundane (but important) project stuff. That means 

                you'll have more time and energy to do the really 

                exciting---and difficult---stuff, like writing quality code.

              </p>},

            :image_url =>   '/images/auto.jpg',    

            :price => 29.95)





            Product.create(:title => 'Pragmatic Version Control',

              :description =>

              %{<p>

                 This book is a recipe-based approach to using Subversion that will 

                 get you up and running quickly---and correctly. All projects need

                 version control: it's a foundational piece of any project's 

                 infrastructure. Yet half of all project teams in the U.S. don't use

                 any version control at all. Many others don't use it well, and end 

                 up experiencing time-consuming problems.

              </p>},

            :image_url => '/images/svn.jpg',

            :price => 28.50)





            Product.create(:title => 'Pragmatic Unit Testing (C#)',

            :description => 

            %{<p>

                Pragmatic programmers use feedback to drive their development and 

                personal processes. The most valuable feedback you can get while 

                coding comes from unit testing.

              </p>

              <p>

                Without good tests in place, coding can become a frustrating game of 

                "whack-a-mole." That's the carnival game where the player strikes at a 

                mechanical mole; it retreats and another mole pops up on the opposite side 

                of the field. The moles pop up and down so fast that you end up flailing 

                your mallet helplessly as the moles continue to pop up where you least 

                expect them.

              </p>},

            :image_url => '/images/utc.jpg',

            :price => 27.75)

          end



          def self.down

            Product.delete_all

          end

        end


#%{...} is same as "", but used for long string(text)

3. insert test data into database
Please delete the db/migrate/*****_add_price.rb first, Or it will be executed and a MySQL exception will be thrown.
rake db:migrate
#Please check coressponding table in database for confirm

4. pick "files.rar" from attachment
copy depot.css into public/stylesheets
copy images into public/images
copy index.html.erb into app/views/products


5. edit stylesheet_link_tag of app/views/layouts/products.html.erb
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

        <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

        <head>

          <meta http-equiv="content-type" content="text/html;charset=UTF-8" />

          <title>Products: <%= controller.action_name %></title>

          <%= stylesheet_link_tag 'scaffold', 'depot' %>

        </head>

        <body>



        <p style="color: green"><%= flash[:notice] %></p>



        <%= yield  %>



        </body>

        </html>



6. try it.
 
 下载:
 
内容概要:本文介绍了一种基于蒙特卡洛模拟和拉格朗日优化方法的电动汽车充电站有序充电调度策略,重点针对分时电价机制下的分散式优化问题。通过Matlab代码实现,构建了考虑用户充电需求、电网负荷平衡及电价波动的数学模【电动汽车充电站有序充电调度的分散式优化】基于蒙特卡诺和拉格朗日的电动汽车优化调度(分时电价调度)(Matlab代码实现)型,采用拉格朗日乘子法处理约束条件,结合蒙特卡洛方法模拟大量电动汽车的随机充电行为,实现对充电功率和时间的优化分配,旨在降低用户充电成本、平抑电网峰谷差并提升充电站运营效率。该方法体现了智能优化算法在电力系统调度中的实际应用价值。; 适合人群:具备一定电力系统基础知识和Matlab编程能力的研究生、科研人员及从事新能源汽车、智能电网相关领域的工程技术人员。; 使用场景及目标:①研究电动汽车有序充电调度策略的设计与仿真;②学习蒙特卡洛模拟与拉格朗日优化在能源系统中的联合应用;③掌握基于分时电价的需求响应优化建模方法;④为微电网、充电站运营管理提供技术支持和决策参考。; 阅读建议:建议读者结合Matlab代码深入理解算法实现细节,重点关注目标函数构建、约束条件处理及优化求解过程,可尝试调整参数设置以观察不同场景下的调度效果,进一步拓展至多目标优化或多类型负荷协调调度的研究。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值