【rails3教材】博客构建过程

构建rails项目--blog

1
2
3
4
5
6
$ rails new blog --skip-bundle
$ cd blog
$ bundle --local
$ bundle install #安装需要的包
$ rake db:create #创建数据库
$ rails s #启动服务器

  

Hello Rails

$ rails g controller home index

修改app/views/home/index.html.erb文件内容

<h1>Hello, Rails</h1>

如果有删除public/index.html

修改config/routes.rb(应用程序路由设置)

Blog::Application.routes.draw do  
    root :to => ‘home#index‘  #:to指定了需要访问的控制器与动作  
end

现在可以http://localhost:3000看到Hello Rails

【rails3教材】博客构建过程

上一篇:VS2010+Selenium测试脚本设计


下一篇:有一种失败叫瞎忙