码迷,mamicode.com
首页 > 其他好文 > 详细

Active Record基础

时间:2016-02-14 18:15:32      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

1.创建controler: welcome ;action: index

$ rails generate controller welcome index

2.创建名为Article的model定义title:string text:text
$ bin/rails generate model Article title:string text:text 
$ bin/rake db:migrate 迁移数据

3.创建model 添加关联
$ rails generate model Comment commenter:string body:text article:references

4.在文件中 config/routes.rb 添加一个rest 动作
Rails.application.routes.draw do
resources :articles
end

$ bin/rake routes

5.进入控制台
rails c

Active Record基础

标签:

原文地址:http://www.cnblogs.com/keno32/p/5189359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!