跳至內容 跳至搜尋
方法
#
R
V
包含的模組

常數

DEFAULT_PROTECTED_INSTANCE_VARIABLES = %i(@_action_name @_response_body @_formats @_prefixes)
 

執行個體公開方法

render(*args, &block)

標準化參數和選項,然後委派給 render_to_body 並將結果置於 self.response_body 中。

支援的選項取決於底層的 render_to_body 實作。

# File actionpack/lib/abstract_controller/rendering.rb, line 25
def render(*args, &block)
  options = _normalize_render(*args, &block)
  rendered_body = render_to_body(options)
  if options[:html]
    _set_html_content_type
  else
    _set_rendered_content_type rendered_format
  end
  _set_vary_header
  self.response_body = rendered_body
end

render_to_body(options = {})

執行實際的範本渲染。

# File actionpack/lib/abstract_controller/rendering.rb, line 49
def render_to_body(options = {})
end

render_to_string(*args, &block)

類似於 render,但只將渲染的範本以字串形式傳回,而不是設定 self.response_body

如果元件延伸了 response_body 的語意(例如 ActionController 將其延伸為任何回應方法 each 的內容),則需要覆寫此方法才能仍然傳回字串。

# File actionpack/lib/abstract_controller/rendering.rb, line 43
def render_to_string(*args, &block)
  options = _normalize_render(*args, &block)
  render_to_body(options)
end

rendered_format()

傳回已渲染內容的 Content-Type

# File actionpack/lib/abstract_controller/rendering.rb, line 53
def rendered_format
  Mime[:text]
end

view_assigns()

此方法應傳回包含指定項目的雜湊。您可以覆寫每個控制器的此組態。

# File actionpack/lib/abstract_controller/rendering.rb, line 61
def view_assigns
  variables = instance_variables - _protected_ivars

  variables.each_with_object({}) do |name, hash|
    hash[name.slice(1, name.length)] = instance_variable_get(name)
  end
end

執行個體私有方法

_normalize_args(action = nil, options = {})

透過將 render "foo" 轉換為 render action: "foo",以及將 render "foo/bar" 轉換為 render file: "foo/bar" 來標準化參數。

# File actionpack/lib/abstract_controller/rendering.rb, line 73
def _normalize_args(action = nil, options = {}) # :doc:
  if action.respond_to?(:permitted?)
    if action.permitted?
      action
    else
      raise ArgumentError, "render parameters are not permitted"
    end
  elsif action.is_a?(Hash)
    action
  else
    options
  end
end

_normalize_options(options)

標準化選項。

# File actionpack/lib/abstract_controller/rendering.rb, line 88
def _normalize_options(options) # :doc:
  options
end

_process_options(options)

處理額外選項。

# File actionpack/lib/abstract_controller/rendering.rb, line 93
def _process_options(options) # :doc:
  options
end