I use mustache for templating my javascript ajax calls, Here is my data and the template:

{'joined':1} // ajax responde data json.

var myTemplate = '{{ joined }} person joined so far.'

It works, however I want to fix the grammer in this, if more than 1 person joins, I want to show 5 people joined so far.

How to achieve this without manipulating the server side ajax json responder ?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can add conditional logic inside the JSON object, if you can coax your server-side AJAX into delivering it that way:

var json = {
    'joined': 1,
    'ppl': function() {
        return (this.joined === 1) ? 'person' : 'people'
    }
} // ajax responde data json.
var myTemplate = '{{ joined }} {{ppl}} joined so far.'

Mustache.to_html(myTemplate, json);

http://jsfiddle.net/mblase75/H8tqn/

link|improve this answer
feedback
var json = { 'joined': 1 };
var template = json.joined +' '+ ((json.joined === 1) ? 'person': 'people') +' joined so far.';

I've changed the way you insert the number, because it's easier for Javascript to understand and actually takes less time to parse.

Basically, this sequence of syntax (condition) ? value: value is another way of an if-statement and returns a value more or less.

var true_or_false = (1 === 1) ? 'this is true!': 'this is false!';

Here I check if 1 equals 1. If so, add 'this is true!' to the string. If not, add 'this is false!' to the string. When you're surrounding an if-statement like that between two strings, I highly recommend to put a set of brackets around it, again!

var true_or_false = 'this is '+ ((1 === 1) ? 'true': 'false') +'!';

Alternatively you can use the old-fashioned if statement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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