<%= render :partial => 'partial/path', :locals => {:xyz => 'abc'} %>

vs

<%= render :partial => 'partial/path', :object => @some_object %>

I think the first one make a local variable named xyz available in the partial and the second one makes a local variable named object available in the partial. So what is the difference? (Besides locals allows more than on variable)

link|improve this question

you have made a mistake,:locals => {:xyz => 'abc'} makes the variable xyz available in the partial(and the value is 'abc'). – DiveInto Jul 14 '11 at 2:28
feedback

2 Answers

up vote 3 down vote accepted

In the second case using :object will define a variable with the same name as the partial by default. If my partial template is named _user.html.erb then there will be a local variable named "user" defined in the template.

You can specify a different variable name with :as => "another_name".

This is documented here: http://api.rubyonrails.org/classes/ActionView/Partials.html

link|improve this answer
feedback

The second form

render :partial => 'account', :object => @some_account

will make sure the account variable in the partial will be set to @some_account. You can rename the variable using the :as option.

The biggest advantage of the :locals is that

  • you have very clear control over the objects and names
  • you can assign more than 1 variable

So you could do something like

render partial => 'some_view', :locals => { :user => account.user, :details => some_details_we_retrieved }

making a clear seperation possible when needed.

The disadvantage of the :locals approach is that it is more verbose, and sometimes a simple

render :partial => 'account'

is identical to

render :partial => 'account', :locals => {:account => @account }

So use the one which suits you the best (or where it suits the best).

link|improve this answer
I have an example where I can access the name of the :object variable via object in my partial... Which is strange. – Chris Muench Feb 25 '11 at 21:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.