方法
- #
- 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
实现。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/abstract_controller/rendering.rb, line 26 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 = {}) 链接
执行实际的模板渲染。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/abstract_controller/rendering.rb, line 50 def render_to_body(options = {}) end
render_to_string(*args, &block) 链接
类似于 render
,但只返回渲染后的模板作为字符串,而不是设置 self.response_body
。
如果组件扩展了 response_body
的语义(如 ActionController
扩展它为任何响应 each 方法的对象),则需要覆盖此方法才能继续返回字符串。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/abstract_controller/rendering.rb, line 44 def render_to_string(*args, &block) options = _normalize_render(*args, &block) render_to_body(options) end
rendered_format() 链接
返回渲染内容的 Content-Type
。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/abstract_controller/rendering.rb, line 54 def rendered_format Mime[:text] end
view_assigns() 链接
此方法应返回一个包含分配的哈希。您可以按控制器覆盖此配置。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/abstract_controller/rendering.rb, line 62 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"
来标准化参数。
来源: 显示 | 在 GitHub 上
# 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) 链接
标准化选项。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/abstract_controller/rendering.rb, line 88 def _normalize_options(options) # :doc: options end
_process_options(options) 链接
处理额外的选项。
来源: 显示 | 在 GitHub 上
# File actionpack/lib/abstract_controller/rendering.rb, line 93 def _process_options(options) # :doc: options end