路由配置
route信息快捷查詢 >terminal中查看
$rake routes
routes信息創(chuàng)建 七種資源路由配置方法
resources :posts
模型創(chuàng)建配置
rails腳手架使用 可以生成完整的資源套件
- 使用腳手架之前需要設計模型數(shù)據(jù)字段(數(shù)據(jù)庫設計)
$ rails generate scaffold Post content:text
scaffold為腳手架命令
Post為所需要創(chuàng)建的資源模型 為單數(shù)
content:text 為設計數(shù)據(jù) :text為參數(shù)類型
- 數(shù)據(jù)遷移
$ bundle exec rake db:migrate
腳手架會自動生成routes信息 controller 和model信息