ruby中的别名方法链调用自身

时间:2010-06-09 12:52:41

标签: ruby-on-rails alias-method-chain

我正在重写控制器渲染方法,但是,我想在render_to_string方法中使用旧方法。这些是我目前的代码:

def render_with_xhr(options = {}, extra_options = {}, xhr_check = true, &block)
  if xhr_check && request.xhr?
    template = render_to_string(options)
    render_without_xhr(:update) {|page| page.replace_html("#popup .dialog", template)}
  else
    render_without_xhr(options, extra_options, &block)
  end
end

alias_method_chain :render, :xhr

由于render_to_string使用了渲染(大概),所以会发生这种情况,我最终会陷入无限循环。我怎样才能让它回归到旧方法只是为了我的新渲染方法?

我从接受的答案中调整了代码,最终代码如下:

def render_to_string(options = {}, &block)
  render(options, {}, false, &block)
ensure
  response.content_type = nil
  erase_render_results
  reset_variables_added_to_assigns
end

def render_with_xhr(options = nil, extra_options = {}, xhr_check = true, &block)
  if xhr_check && request.xhr?
    template = render_to_string(options)
    render_without_xhr :update do |page|
      page.replace_html("#popup .dialog", template)
    end
  else
    render_without_xhr(options, extra_options, &block)
  end
end

alias_method_chain :render, :xhr

1 个答案:

答案 0 :(得分:2)

你可以在第2行将一些唯一值传递给选项哈希,然后在你的代码中检测它并删除

def render_with_xhr(options = {}, extra_options = {}, xhr_check = true, &block)
  if xhr_check && request.xhr? && !options.delete(:bacon)
    template = render_to_string(options.merge(:bacon => true))
    render_without_xhr(:update) {|page| page.replace_html("#popup .dialog", template)}
  else
    render_without_xhr(options, extra_options, &block)
  end
end

alias_method_chain :render, :xhr
像这样:)