作者giive (lala)
看板Ruby
标题Re: Rails 1.2 以及 Rails 2.0 的目标
时间Fri Sep 15 16:33:36 2006
※ 引述《kojilin (呵呵呵噗噗噗..搞笑..)》之铭言:
: ※ 引述《giive (lala)》之铭言:
: : 我个人是对 RESTful 有兴趣啦,不过我目前实在是不太了解他的意思
: : allow us to focus on more important things Rails is not about inventing your own style for doing common things
: : 有人知道吗?
: 大概懂RESTful,但我也不懂那句想讲什麽
: 後面几句Over different projects, controllers will look more like the same.
: Prettify routes
: 就比较懂:P
: POST /people
: GET /people/1
: PUT /people/1
: DELETE /people/1
: 大概就HTTP method可以搭配controller做到CRUD
: 恩,所以我还是不知道那句想说什麽:P
: 是说URI不会有自己的风格?
: 可是通常不就那几个show, edut,update...etc
: koji
看到这一篇
http://0rz.net/911OL 了解了
GET: /users => [:action => 'index']
GET: /users.xml => [:action => 'index', :format => 'xml']
GET: /users/1 => [:action => 'show', :id => 1]
GET: /users/1;edit => [:action => 'edit', :id => 1]
GET: /users/1.xml => [:action => 'show', :id => 1, :format => 'xml']
POST: /users => [:action => 'create']
PUT: /users/1 => [:action => 'update', :id => 1]
DELETE: /users/1 => [:action => 'destroy', :id => 1]
我们可以藉由不同 HTTP request 来做到不同的 routing
所以大部份的修改应该都是在 routing 这边
不知道会不会改的更慢 @@!
--
lighty RoR 是一个介绍 lighttpd , SQLite , Ruby and Rails 的 Blog
http://lightyror.blogspot.com/
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.230.111.70