Rails3学习

 

# Default scopes

 

Default scopes apply to all queries that start with this model.

class Product < ActiveRecord::Base
  default_scope :order => 'title'
  # validation stuff...
end
 

 

 

 

 

 

Rails3的安装等,就照着前面讲的来吧,碰到问题解决问题;

 

Rails3的gem变化和用处:

http://renren.it/a/JAVAbiancheng/lingyumoxing/20101205/68030.html

 

最常规的方法也是最重要的:官方文档

http://rubyonrails.org/documentation

 

常看看别人的技术blog

http://www.lycom.de/

 

这里有位兄弟的总结,算是可以省些力气吧,尤其是要马上开工:

http://onia.iteye.com/

 

 

+

+

+

||

+

+

+

 

 

 

 

 

 

你可能感兴趣的:(rails3)