3

我一直在尝试基于此 Yehuda Katz 的博客文章创建自定义渲染器。

如果我调用render :my_custom_renderer => "index"它可以工作,但它不适用于默认值respond_withformat.my_custom_renderer

我创建了一个简单的示例,.

在空白应用程序中,添加以下行:

在 config/mime_types.rb 中:

Mime::Type.register_alias 'text/html', :my_custom_renderer

在 config/my_custom_renderer.rb 中:

require "action_controller/metal/renderers"
ActionController.add_renderer :my_custom_renderer do |template, options|
  self.mime_type ||= Mime::HTML
  self.response_body = render_to_string(template).sub(/^/, 
                                                '\1<h1>Rendering Injection</h1>')
end

在 app/views/custom_renderer_test/index.my_custom_renderer.erb 中:

<h1>A message "Rendering Injection" should appear above</h1>

在 app/controllers/custom_renderer_test_controller.rb 中:

class CustomRenderingTestController < ApplicationController
  def index
    respond_to do |format|
      # does not go through my custom renderer!
      format.my_custom_renderer 
      # although it works if I explicitly do:
      # format.my_custom_renderer { render :my_custom_renderer => 'index' }
    end
  end
end

最后,在 config/routes.rb 中:

root :to => "custom_rendering_test#index"

启动服务器并转到根页面应该会显示来自 my_custom_renderer 的消息,但它不会。我已经尝试逐步调试 Rails 源代码,但看起来我对渲染架构的理解不够好。

有人可以给我一个关于问题所在的提示吗?

4

1 回答 1

2

可能有帮助的是使用respond_with显式方法创建一个响应者(并使用更新的):

class ActionController::Responder
  def to_my_custom_renderer
    controller.render :my_custom_renderer => controller.action_name
  end
end
于 2011-03-12T18:53:39.307 回答