Active Record基础

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Active Record基础相关的知识,希望对你有一定的参考价值。

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基础的主要内容,如果未能解决你的问题,请参考以下文章

Codeigniter Active Record 类插入

使用 CodeIgniter Active Record 语句

CodeIgniter Active Record 中的 SQL 注释?

具有完全迁移支持的 .net Active Record ORM

CodeIgniter:如果 Active Record 找不到任何数据,则返回 FALSE

在“要求”中:没有要加载的文件 -- active_record (LoadError)