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've become a bit confused about the idea of "rendering" a "template" due to the way an author speaks about it in a book I'm reading.

My original understanding of "rendering a template" was that it meant that Rails is providing the content that is viewed on the screen/presented to the viewer (in the way that a partial is rendered) but the book I'm reading seems to be using the concept of "rendering a template" to also mean something else. Let me explain in context

This book (rails 3 in action) sets up a page layout using the conventional layouts/application.html.erb file, and then it "yields" to different view pages, such as views/tickets/show.html.erb which adds more content to the screen. that's all straightforward..

Within this view views/tickets/show.html.erb, there is a rendering of a partial (which is also a straightforward concept).

<div id='tags'><%= render @ticket.tags %></div>

Now within this partial there is, using ajax, a call to a "remove" method in the "tags_controller.rb" which is designed to allow authorized users to remove a "tag" from a "ticket" in our mock project management application.

<% if can?(:tag, @ticket.project) || current_user.admin? %>
    <%= link_to "x", remove_ticket_tag_path(@ticket, tag),
      :remote => true,
      :method => :delete,
      :html => { :id => "delete-#{tag.name.parameterize}" } %>
  <% end %>

Now here is the "remove" action in the tags controller (which disassociates the tag from the ticket in the database)...

def remove
    @ticket = Ticket.find(params[:ticket_id])
    if can?(:tag, @ticket.project) || current_user.admin?
      @tag = Tag.find(params[:id])
      @ticket.tags -= [@tag]
      @ticket.save
    end
  end
end

At the end of this remove action, the author originally included render :nothing => true , but then he revised the action because, as he says, "you’re going to get it to render a template." Here's where I get confused

The template that he gets this action to render is "remove.js.erb", which only has one line of jquery inside it, whose purpose is to remove the "tag" from the page (i.e. the tag that the user sees on the screen) now that it has been disassociated from the ticket in the database.

$('#tag-<%= @tag.name.parameterize %>').remove();

When I read "rendering a template" I expect the application to be inserting content into the page, but the template rendered by the "remove" action in the controller only calls a jquery function that removes one element from the page.

If a "template" is "rendered", I'm expecting another template to be removed (in order to make room for the new template), or I'm expecting content to be "rendered" in the way that a partial is rendered. Can you clarify what is actually happening when a "template" is "rendered" in the situation with the jquery in this question? Is it actually putting a new page in front of the user (I expected some sort of physical page to be rendered)

share|improve this question
+1 for a well written question – Bragaadeesh Dec 23 '11 at 7:03

3 Answers

up vote 1 down vote accepted

You're nearly there! Rendering a template is indeed always about producing content, but for a slightly wider description of content. It could be a chunk of html, for example an ajax call to get new items might produce some html describing the new items, but it doesn't have to be.

A template might produce javascript as it does in your second example. Personally I am trying to avoid this and instead pass JSON back to the client and let the client side js perform the required work.

Another type of rendering you might perform is to produce some JSON. APIs will often do this, but you might also do this on a normal page. For example rather than rendering some javascript to delete tag x you might render the json

{ to_delete: "tag-123"}

and then have your jQuery success callback use that payload to know which element to remove from the DOM, by having this in your application.js file

$('a.delete_tag').live('ajax:success', function(data){
  var selector = '#' + data.to_delete;
  $(selector).remove()
}

(Assuming that your delete links had the class 'delete_tag') Rendering JSON like this isn't really a template at all, since you'd usually do this via

render :json => {:to_delete => "tag-#{@tag.name.parameterize}"}

although I suppose you could use an erb template for this (I can't imagine why though).

share|improve this answer
This is interesting. Can you clarify something. Instead of using the template, I tried to render :js => "$('#tag-<%= @tag.name.parameterize %>').remove();" . This worked, but it required a page refresh in order to remove the tag, but if I put this jquery in a template it didn't require a page refresh to remove the tag. When you write "have your jQuery success callback use that payload to know which element to remove from the DOM," is this something that would allow me to use render :js without the problem of having to refresh the page? Can you explain/show how? Thank you in advance. – Leahcim Dec 23 '11 at 8:43
I suspect that if you do render js it's expecting normal ruby style interpolation (#{}) rather than erb tags – Frederick Cheung Dec 23 '11 at 8:51
thanks for that. you are correct. – Leahcim Dec 23 '11 at 9:15

My understanding is that js.erb is "rendered" by executing the javascript functions within it. Very often something like the below is done:

jQuery(document).ready(function() {
    jQuery('#element').html('<%= escape_javascript(render pages/content) %>');
});
share|improve this answer
thanks, so in this function the pages/content is being put in the html element? – Leahcim Dec 23 '11 at 7:26
yes, in fact you can render the content that is normally rendered by html.erb this way – prusswan Dec 23 '11 at 7:33

There's a really succinct overview of rendering at http://guides.rubyonrails.org/layouts_and_rendering.html that may help as it also goes into the details of the ActionController::Base#render method and what happens behind the scenes when you use render :nothing (for example). Render but can be used for files or inline code as well -- not just 'templates' in the traditional sense.

share|improve this answer
I took a look at that page, specifically 2.2.10, which gives instructions about rendering js directly from the controller action like render => "alert('Hello Rails');" Therefore, just to try it, I moved the jquery from the template remove.js.erb up into the controller as described in 2.2.10, but when I clicked on the element, I needed to refresh the page for the remove to take place. If I have the jquery in remove.js.erb, it actually removes the element without requiring a page refresh. Similar but different. – Leahcim Dec 23 '11 at 7:45
see Frederick Cheung's comment as to why I had this problem... – Leahcim Dec 23 '11 at 18:36

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.