Ruby on Rails 之旅(二)—— 牛刀小试

上一篇博文中介绍了如何配置windows下的ROR开发环境。

1)创建工程:

File->New->Rails Project

输入Project名,DB选择PostgreSQL,finish之后工程就直接创建完毕了。

2)修改DB访问配置:

/config/database.yml,配置如下:

development:
  adapter: postgresql
  #encoding: unicode
  database: ror_test_development
  pool: 5
  username: postgres
  password: 123456
  host: localhost
  port: 5432

test:
  adapter: postgresql
  #encoding: unicode
  database: ror_test_test
  pool: 5
  username: postgres
  password: 123456
  host: localhost
  port: 5432

production:
  adapter: postgresql
  #encoding: unicode
  database: ror_test_production
  pool: 5
  username: postgres
  password: 123456
  host: localhost
  port: 5432

3)创建DB

在工程上点击右键->Rake->DB-Create->all

查看DB中是否创建了上面三个定义过的数据库。

4)启动服务

启动mongrel后,访问http://127.0.0.1:3000/,如果可以访问,则说明环境正常运行中。

5)用Generators创建一个测试实例框架。

Windows->Show Views->Generators.

在Generator下拉菜单中选择scaffold,然后Parameters中输入下面内容:

recipe title:string author:string description:text

点击绿色的右相箭头(Run Generator)后,会生成recipe对象的所有文件。

6)Windows->Show Views->Rake Tasks

Tasks下拉菜单中选中db:migrate,Parameters空,点击绿色的右相箭头(Run Rake Task)后,查看DB中是否生成了recipe表。

如果生成了则表示成功了。

7)重新启动服务之后访问下面链接:

http://127.0.0.1:3000/recipes

就可以访问recipes的CRUD应用了。

你可能感兴趣的:(on,Ruby,Rails,migrate,scaffold)