rails生成的控制器中,大部分的action代码都非常相似,每个Action中基本上都有如下代码:
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @post }
end
rails的宗旨是瘦Controller胖Model,现在Controller还不算瘦,要再让他瘦一点,那么可以借助Resource Controller的力量,使用这个插件可以减少大量Controller重复的代码。著名的电子商务程序spree
http://spreecommerce.com/ 就使用了这个插件,让控制器变动更精巧。
安装Resource Controller有很多种方式。
在你的应用目录下执行
ruby script/plugin install git://github.com/giraffesoft/resource_controller.git
或者下载下来后复制过去
git clone git://github.com/giraffesoft/resource_controller.git
这两种方式都要有Git环境的支持,后面我会写一篇Git使用的相关文章,现在你可以google一下相关资料。
如果实在懒得用Git那就去下载zip包吧
http://github.com/giraffesoft/resource_controller/downloads
在控制器中有两种方式使用,各有不同:
第一种继承 ResourceController::Base。
第二种在控制器中调用resource_controller方法。
可能你认为这么做失去了对原来Action的可控制性,那就错了,Resource Controller可以让你控制Action的生命周期(Before and After),下面的代码应该能看明白:
class ProjectsController < ResourceController::Base
new_action.before do #new action请求之前做些什么?
3.times { object.tasks.build }
end
create.after do #create action之后做些什么?
object.creator = current_user
end
end
当然其它的action类似这样的处理方式。
Flash
class ProjectsController < ResourceController::Base
create.flash "Can you believe how easy it is to use resource_controller? Neither could I!"
end
respond_to
增加响应类型
class ProjectsController < ResourceController::Base
create.wants.js { render :template => "show.rjs" }
end
比如要让index方法响应输出xml数据,可以这么写:
index.wants.xml { render :xml => @posts }
或者重写
class ProjectsController < ResourceController::Base
create.response do |wants|
wants.html
wants.js { render :template => "show.rjs" }
end
end
Resource Controller还有更多的特性,你可以参考
http://github.com/giraffesoft/resource_controller/tree/master
希望Resource Controller能为你带来便利。