calling function with arguments in mustache javascript

sinisa picture sinisa · May 18, 2011 · Viewed 41.2k times · Source

Is it possible to call a function with arguments with Mustache.js

{{somefunction(somevalue)}}
thank you

Answer

bluehazetech picture bluehazetech · Jul 27, 2011

Check out the section on Lambdas at http://mustache.github.com/mustache.5.html

Mustache template block:

{{#someFunction}}someValue{{/someFunction}}

Function block:

someFunction : function () {
  return function(val, render) {
    return "I passed in this value: " + render(val);
  };
}

Output:

I passed in this value: someValue