Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm calling a web service that returns an array of objects in JSON.

I want to take those objects and populate a div with html. Let's say each object contains a url and a name.

If i wanted to generate the following html for each object:

    <div><img src="the url" />the name</div>

Is there a best practice for this? I can see three ways of doing it:

  1. Concatentate strings
  2. Create elements
  3. Use some sort of templating plugin like http://beebole.com/pure/ which seems like a cool yet immature technology

  4. UPDATE, a friend suggested the following: generate the html on the server, then serve up via json, this is faster and allows you to reuse the template on any server side stuff you are doing

share|improve this question
You could also check underscore js: documentcloud.github.com/underscore/#template It plays very nicely with backbone.js – luacassus Apr 18 '12 at 18:36

5 Answers

up vote 33 down vote accepted

Options #1 and #2 are going to be your most immediate straight forward options, however, for both options, you're going to feel the performance and maintenance impact by either building strings or creating DOM objects.

Templating isn't all that immature, and you're seeing it popup in most of the major Javascript frameworks.

Here's an example in JQuery Template Plugin that will save you the performance hit, and is really, really straightforward:

var t = $.template('<div><img src="${url}" />${name}</div>');

$(selector).append( t , {
     url: jsonObj.url,
     name: jsonObj.name
});

I say go the cool route (and better performing, more maintainable), and use templating.

share|improve this answer
Ach, man, I was looking for that just the other day. – Kzqai Oct 20 '09 at 19:30
JQuery templating appears to be dead, see stackoverflow.com/questions/7911732/… – James McMahon Apr 22 at 20:26

Either of the first two options is both common and acceptable.

I'll give examples of each one in Prototype.

// assuming JSON looks like this:
// { 'src': 'foo/bar.jpg', 'name': 'Lorem ipsum' }

Approach #1:

var html = "<div><img src='#{src}' /> #{name}</div>".interpolate(json);
$('container').insert(html); // inserts at bottom

Approach #2:

var div = new Element('div');
div.insert( new Element('img', { src: json.src }) );
div.insert(" " + json.name);
$('container').insert(div); // inserts at bottom
share|improve this answer
Building generating the HTML explicitly with strings rather than DOM elements is more performant (assuming string concatenation isn't a real issue) and readable. – Rodrick Chapman Oct 21 '08 at 4:21
In IE string concatenation always is an issue. Use an array instead. – some Dec 7 '08 at 16:31

If you absolutely have to concatenate strings, instead of the normal :

var s="";
for (var i=0; i < 200; ++i) {s += "testing"; }

use a temporary array:

var s=[];
for (var i=0; i < 200; ++i) { s.push("testing"); }
s = s.join("");

Using arrays is much faster, especially in IE. I did some testing with strings a while ago with IE7, Opera and FF. Opera took only 0.4s to perform the test, but IE7 hadn't finished after 20 MINUTES !!!! ( No, I am not kidding. ) With array IE was very fast.

share|improve this answer
Don't you love IE JavaScript performance? :P – alex Sep 24 '10 at 23:15
I switched browser a long time ago, so I don't suffer that much. IE was a horrible browser but it is getting better. But I doubt I will ever switch back. – some Sep 25 '10 at 11:15

Here's an example, using my Simple Templates plug-in for jQuery:

var tmpl = '<div class="#{classname}">#{content}</div>';
var vals = {
    classname : 'my-class',
    content   : 'This is my content.'
};
var html = $.tmpl(tmpl, vals);
share|improve this answer
Neat. I could have used something that like on a big project a few months ago. – Rodrick Chapman Oct 21 '08 at 4:18

You could add the template HTML to your page in a hidden div and then use cloneNode and your favorite library's querying facilities to populate it

/* CSS */
.template {display:none;}

<!--HTML-->
<div class="template">
  <div class="container">
    <h1></h1>
    <img src="" alt="" />
  </div>
</div>

/*Javascript (using Prototype)*/
var copy = $$(".template .container")[0].cloneNode(true);
myElement.appendChild(copy);
$(copy).select("h1").each(function(e) {/*do stuff to h1*/})
$(copy).select("img").each(function(e) {/*do stuff to img*/})
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.