Metal 使用举例
原生的 Metal
# config/routes.rb
get 'hello' => 'hello#index'
# ...# app/controllers/hello_controller.rb
class HelloController < ActionController::Metal
def index
self.response_body = "Hello World!"
end
endStarted GET "/hello" for 127.0.0.1 at 2014-04-27 09:04:49 +0800
Processing by HelloController#index as HTML
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)Started GET "/hello" for 127.0.0.1 at 2014-04-27 08:57:07 +0800加入 Rendering 模块
加入 Redirection 模块
加入其它模块
最后更新于