代码生成
Mustache
多语言支持
javascript
依赖
npm install mustache --save
使用
var Mustache = require('mustache');
var view = {
title: "Joe",
calc: function () {
return 2 + 4;
}
};
var output = Mustache.render("{{title}} spends {{calc}}", view);
多语言支持
依赖
npm install mustache --save
var Mustache = require('mustache');
var view = {
title: "Joe",
calc: function () {
return 2 + 4;
}
};
var output = Mustache.render("{{title}} spends {{calc}}", view);