method
capture
v1.2.6 -
Show latest stable
- Class:
ActionView::Helpers::CaptureHelper
capture(*args, &block)public
Capture allows you to extract a part of the template into an instance variable. You can use this instance variable anywhere in your templates and even in your layout.
Example of capture being used in a .rhtml page:
<% @greeting = capture do %> Welcome To my shiny new web page! <% end %>
Example of capture being used in a .rxml page:
@greeting = capture do 'Welcome To my shiny new web page!' end
2Notes
Passing arguments to block
To pass arguments to block being captured, just list them as capture method params. I.e.
def export(exportable, export_klass, options={}, &block)
result = ""
#...
if block_given?
result += capture(my_custom_var_i_want_to_pass_to_block, &block)
end
result
end
Then simply...
<%= export(@a, @b) do |my_custom_var| %>
<% if my_custom_var.nil? %> My custom var is nil!!! <% end %> <% end %>
Coding test and analyzer @ DupCode
We are soon launching DupCode.com, at which you can test and analyze your coding skills, compete with friends and at the same time pave the way to professional coder Come drop your email at DupCode.com and we will inform you the minute we launch!