method

render_collection

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: PartialRenderer
render_collection() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/renderer/partial_renderer.rb, line 317 def render_collection return nil if @collection.blank? if @options.key?(:spacer_template) spacer = find_template(@options[:spacer_template], @locals.keys).render(@view, @locals) end result = @template ? collection_with_template : collection_without_template result.join(spacer).html_safe end
Register or log in to add new notes.