vote up 0 vote down star

I render a partial like so:

<%= render :partial => 'widgets/some_partial, :locals => {:foo => 'bar'} %>

So inside of _some_partial.html.erb I render two more partials like so:

<% #foo.nil? #=> false %>
<%= render :partial => 'widgets/another_partial', :locals => {:foo => foo} %>
`<%= render :partial => 'widgets/another_partial_again', :locals => {:foo => foo} %>`

The foo local variable renders fine in some_partial.html.erb and even in another_partial_again.html.erb. However, the foo variable is inaccessible in another_partial.html.erb even though I explicitly passed it in the render call.

What is happening here?

Thanks for the help.

flag

What do you mean by "inaccessible"? Does it throw a undefined local variable or method or is it nil? Can you show the code that uses foo on these sub-partials? – obvio171 Aug 6 at 17:48
it throws undefined local variable – unknown (google) Aug 6 at 17:49
the code was simple: <%= foo %> – unknown (google) Aug 6 at 17:50

1 Answer

vote up 0 vote down check

Solved. Turns out I was also rendering the same partial from the controller without sending the proper local variables. Thanks anyways!!!

link|flag
I actually had the same problem, and my solution was exactly the same -- I figured it out when I saw your mistake :P – Hugo Peixoto Aug 11 at 9:23

Your Answer

Get an OpenID
or

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