Recently, I ran into mustache which is claimed to be Logic-less template.

However, there is no explaining why it is designed in Logic-less way. In another word, what's the advantage of Logic-less template?

link|improve this question

62% accept rate
I hadn't heard of Mustache before, and was quite literally on the verge of writing something almost exactly like it myself - i sat down to start on it today, but got distracted by firewall tweaking. So thanks for saving me some time! – Tom Anderson Oct 17 '10 at 22:14
feedback

7 Answers

up vote 9 down vote accepted

In other words, it prevents you from shooting yourself in the foot. In the old JSP days, it was very common to have JSP files sprinkled with Java code, which made refactoring much harder, since you had your code scattered.

If you prevent logic in templates by design (like mustache does), you will be obliged to put the logic elsewhere, so your templates will end up uncluttered.

Another advantage is that you are forced to think in terms of separation of concerns: your controller or logic code will have to do the data massaging before sending data to the UI. If you later switch your template for another (let's say you start using a different templating engine), the transition would be easy because you only had to implement UI details (since there's no logic on the template, remember).

link|improve this answer
feedback

I get the feeling that I am nearly alone in my opinion, but I am firmly in the opposite camp. I don't believe that the possible mixing of business logic in your templates is enough reason not to use the full power of your programming language.

The usual argument for logic-less templates is that if you have full access to your programming language you might mix in logic that has no place being in a template. I find this akin to reasoning that you should use a spoon to slice meat because your could cut yourself if you use a knife. This is very true, and yet you will be far more productive if you use the latter, albeit carefully.

For instance, consider the following template snippet using mustache:

{{name}}:
<ul>
  {{#items}}
    <li>{{.}}</li>
  {{/items}}
</ul>

I can understand this, but I find the following (using underscore) to be much more simple and direct:

<%=name%>:
<ul>
<%_.each(items, function(i){%>
  <li><%=i%></li>
<%});%>
</ul>

That being said, I do understand that logicless templates have advantages (for instance, they can be used with multiple programming languages without changes). I think these other advantages are very important. I just don't think their logic-less nature is one of them.

link|improve this answer
I'm surprised you feel that the underscore template is simpler.. it looks a lot less readable to me. Just an opinion :-) – Ben Clayton May 16 '11 at 13:23
@ben-clayton I agree that the first syntax is prettier and perhaps more readable. However, its the complexity that I'm driving at when I say "simple". – brad May 17 '11 at 11:09
Sometimes using a ternary statement is appropriate in the template no matter what logic you have. Or what if I want to output the number of items in an array? I don't know how I could use mustache, it appears to lack things like that. – Paul Shapiro Apr 17 at 21:20
feedback

It makes your templates cleaner, and it forces you to keep logic in a place where it can be properly unit-tested.

link|improve this answer
1  
Can you explain it with more details? – Morgan Cheng Oct 11 '10 at 2:22
4  
Spend three months working on a system using a logicful templating language, like JSP, with programmers who are not zealous about separating logic and presentation. You'll find you build a system which essentially has programming in the page - arithmetic for table layout, conditionals for what pricing information to show, and so on. Templating languages are extremely poor programming languages, so this makes for a development and maintenance nightmare. Something like Mustache doesn't let you get into that situation in the first place. – Tom Anderson Oct 17 '10 at 22:13
feedback

A logic-less template is a template that contains holes for you to fill, and not how you fill them. The logic is placed elsewhere and mapped directly to the template. This separation of concerns is ideal because then the template can easily be built with different logic, or even with a different programming language.

From the mustache manual:

We call it "logic-less" because there are no if statements, else clauses, or for loops. Instead there are only tags. Some tags are replaced with a value, some nothing, and others a series of values. This document explains the different types of Mustache tags.

link|improve this answer
The description is slightly sophistic, as the sections work rather like conditionals and loops, just very limited ones. The ability to refer to callables in the hash also lets you transform sections into a rudimentary programming language. Still, at least it makes it difficuly to go down that route, rather than encouraging it. – Tom Anderson Oct 17 '10 at 22:16
Sure, but a template system without blocks for conditions and iteration would be relatively useless. The template itself doesn't specify what the block is for, or how it's handled. – Jeremy Heiler Oct 17 '10 at 22:50
feedback

Even though the question is old and answered, I'd like to add my 2ยข (which may sound like a rant, but it isn't, it's about limitations and when they become unacceptable).

The goal of a template is to render out something, not to perform business logic. Now there's a thin line between not being able to do what you need to do in a template and having "business logic" in them. Even though I was really positive towards Mustache and tried to use it, I ended up not being able to do what I need in pretty simple cases.

The "massaging" of the data (to use the words in the accepted answer) can become a real problem - not even simple paths are supported (something which Handlebars.js addresses). If I have view data and I need to tweak that every time I want to render something because my template engine is too limiting, then this is not helpful in the end. And it defeats part of the platform-independence that mustache claims for itself; I have to duplicate the massaging logic everywhere.

That said, after some frustration and after trying other template engines we ended up creating our own (...yet another...), which uses a syntax inspired by the .NET Razor templates. It is parsed and compiled on the server and generats a simple, self-contained JS function (actually as RequireJS module) which can be invoked to "execute" the template, returning a string as the result. The sample given by brad would look like this when using our engine (which I personally find far superior in readabily compared to both Mustache and Underscore):

@name:
<ul>
@for (items) {
  <li>@.</li>
}
</ul>

Another logic-free limitation hit us when calling into partials with Mustache. While partials are supported by Mustache, there is no possibility to customize the data to be passed in first. So instead of being able to create a modular template and reuse small blocks I'll end up doing templates with repeated code in them.

We solved that by implementing a query language inspired by XPath, which we called JPath. Basically, instead of using / for traversing to children we use dots, and not only string, number and boolean literals are supported but also objects and arrays (just like JSON). The language is side-effect-free (which is a must for templating) but allows "massaging" data as needed by creating new literal objects.

Let's say we want to render a "data grid" table with cusomizable headers and links to actions on the rows, and later dynamically add rows using jQuery. The rows therefore need to be in a partial if I don't want to duplicate the code. And that's where the trouble begins if some additional information such as what columns shall be rendered are part of the viewmodel, and just the same for those actions on each row. Here's some actual working code using our template and query engine:

Table template:

<table>
    <thead>
        <tr>
            @for (columns) {
                <th>@title</th>
            }
            @if (actions) {
                <th>Actions</th>
            }
        </tr>
    </thead>
    <tbody>
        @for (rows) {
            @partial Row({ row: ., actions: $.actions, columns: $.columns })
        }
    </tbody>
</table>

Row template:

<tr id="@(row.id)">
    @for (var $col in columns) {
        <td>@row.*[name()=$col.property]</td>
    }
    @if (actions) {     
        <td>
        @for (actions) {
            <button class="btn @(id)" value="@(id)">@(name)...</button>
        }
        </td>
    }
</tr>

Invocation from JS code:

var html = table({
    columns: [
        { title: "Username", property: "username" },
        { title: "E-Mail", property: "email" }
    ],
    actions: [
        { id: "delete", name: "Delete" }
    ],
    rows: GetAjaxRows()
})

It does not have any business logic in it, yet it is reusable and configurable, and it also is side-effect free.

link|improve this answer
1  
I honestly do not see the point of this answer, it doesn't answer the question at all. You say there are limitations without actually describing what they are or how they occur. Finally you launch into a discussion of your own system which isn't available to anyone else, in reality it could suck and might end up one day on thedailywtf but we'd never know. Open source it, link to it and let us decide! – mattmanser Feb 10 at 10:36
@mattmanser, I do write about the limitations that led to not using Mustache (and Handlebars): missing support for paths, predicates, variables, data transformation for invoking partials. Those were all important for us. We'll probably open-source the code some day, but since it is a server-side (or compile-time if you want) solution which compiles the templates to JS code it's not going to have the same big audience as Mustache. If you want to get into touch, feel free to contact me - I'm also the author of bsn GoldParser on Google code (where you can find my email easily in the readme file). – Lucero Feb 10 at 18:39
feedback

The best argument I've come up with for logicless templates is then you can use the exact same templates on both the client and server. However you don't really need logicless, just one that has it's own "language". I agree with the people who complain that mustache is pointlessly limiting. Thanks, but I'm a big boy and I can keep my templates clean without your help.

Another option is to just find a templating syntax that uses a language that is supported on both client and server, namely javascript on the server either by using node.js or you can use a js interpreter and json via something like therubyracer.

Then you could use something like haml.js which is much cleaner than any of the examples provided so far and works great.

link|improve this answer
feedback

In one sentence: Logic-less means the template engine itself is less complex and therefore has a smaller footprint and there are less ways for it to behave unexpectedly.

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.