我正在寻找使用Mustachejs
with的示例Nodejs
这是我的例子,但它不起作用。Mustache
未定义。我正在使用 master 分支中的 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);