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.

When I render a partial which does not exists, I get an Exception. I'd like to check if a partial exists before rendering it and in case it doesn't exist, I'll render something else. I did the following code in my .erb file, but I think there should be a better way to do this:

    <% begin %>
      <%= render :partial => "#{dynamic_partial}" %>
    <% rescue ActionView::MissingTemplate %>
      Can't show this data!
    <% end %>
share|improve this question
The answer that uses rescue is risky. I would look at the other solutions before using it. – nertzy Jan 10 '12 at 20:44

3 Answers

up vote 23 down vote accepted

I was struggling with this too. This is the method I ended up using:

<%= render :partial => "#{dynamic_partial}" rescue nil %>

Basically, if the partial doesn't exist, do nothing. Did you want to print something if the partial is missing, though?

Edit 1: Oh, I fail at reading comprehension. You did say that you wanted to render something else. In that case, how about this?

<%= render :partial => "#{dynamic_partial}" rescue render :partial => 'partial_that_actually_exists' %>

or

<%= render :partial => "#{dynamic_partial}" rescue "Can't show this data!" %>

Edit 2:

Alternative: Checking for existence of the partial file:

<%= render :partial => "#{dynamic_partial}" if File.exists?(Rails.root.join("app", "views", params[:controller], "_#{dynamic_partial}.html.erb")) %>
share|improve this answer
2  
My question is that I don't want to use Exceptions to do the flow control, which is a anti-pattern: stackoverflow.com/questions/1546514/… – Daniel Cukier Aug 26 '10 at 13:46
4  
An exception is a type of flow control used to handle things that happen beyond a program's normal operation. If the dynamic partial is supposed to be there but something goes wrong and it ends up not being there, then that is a reasonable use for an exception (IMO, of course - proper use of exceptions is a holy war itself). I would say your alternative is to check the filesystem for whether or not the actual file exists. I'll update my answer with that code. – Jeff Aug 26 '10 at 20:08
3  
I like the solution, nevertheless it swallows any kind of exception thrown in the partial. IMHO this makes it harder to track down errors. – twiddles Aug 26 '11 at 20:25
2  
If you have a different type of exception, the rescue nil and ... rescue ... methods will hide it. That leads to bugs that are hard to debug. – nicholaides Dec 23 '11 at 17:04
3  
I really dislike this solution. rescuing is expensive, and File.exists? assumes that the partial can only be in one location. @Rein's solution using the lookup_context is the way to go I believe. – Bert Goethals Feb 14 '12 at 9:32
show 1 more comment

From inside a view, template_exists? works, but the calling convention doesn't work with the single partial name string, instead it takes template_exists?(name, prefix, partial)

To check for partial on path: app/views/posts/_form.html.slim

Use:

lookup_context.template_exists?("form", "posts", true)
share|improve this answer
On Rails 3.0.10 I found that if I have an alternate extension, like app/views/posts/_foo.txt.erb, I needed to add that to the argument as: template_exists?("foo.txt", "posts", true) – Gabe Martin-Dempesy Oct 27 '11 at 22:25
This is deprecated in rails 3.2 – maček Dec 11 '12 at 20:45
It does not appear to be delegated in Rails 3.2.x, however, the second argument is an array of prefixes. Further, it exists on the current controller. – Brendan Dec 25 '12 at 20:44

Currently, I'm using the following in my Rails 3/3.1 projects:

lookup_context.find_all('posts/_form').any?

The advantage over other solutions I've seen is that this will look in all view paths instead of just your rails root. This is important to me as I have a lot of rails engines.

share|improve this answer
2  
lookup_context.exists?('posts/find') should work too – Aaron Lasseigne Mar 7 '12 at 3:50
1  
lookup_context.exists?('posts/find') didn't work for me. Instead I used lookup_context.exists?(name, prefix, partial) or lookup_content.exists?('find', 'posts', true) in this example. – Jenn Jun 12 '12 at 17:30
This is the current (rails >= 3.2) way to check for templates (source apidock) – maček Dec 11 '12 at 20:47

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.