Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't quite understand why the new feature of partial rendering doesn't always kick in. Fore example whit this code:

= render(:partial => "pages/#{foo}/data")

it will never fallback to the partial pages/_data.html.erb if pages/test/_data.html.erb doesn't exists. How can i get this behavior?

share|improve this question

2 Answers

Something you can do is :

= render(:partial => "pages/#{foo}/data") rescue render(:partial => "pages/data")

But I would be interested if someone has a better solution, this one is not elegant especially when you have some variables to pass to the partial. At least It can be better if handled by a helper.

share|improve this answer

My understanding of partials is not that they are small, standalone chunks of HTML to render, but rather bits and pieces of abstraction that you can use to organize your code in a more coherent manner.

As I see it, partials are created to be used in one or more places such that the file does not become cluttered, they're not used to simply be rendered by themselves. I could be mistaken, however.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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