我使用的是寻找一个例子Mustachejs与Nodejs
这是我的例子,但它不起作用.Mustache未定义.我正在使用主分支中的Mustachejs.
var sys = require('sys');
var m = require("./mustache");
var view = {
title: "Joe",
calc: function() {
return 2 + 4;
}
};
var template = "{{title}} spends {{calc}}";
var html = Mustache().to_html(template, view);
sys.puts(html);
Run Code Online (Sandbox Code Playgroud)