在节点中使用 Mustache.js 将数据与视图分离
我想在节点中使用 Mustache.js 将模板与数据分开...如果可能的话,使用 fs.readFile 并不明显。有什么想法吗?
我使用 data.js 作为数组模型,使用 helloworld.html 作为模板
var mustache = require('mustache');
var fs = require('fs');
var http = require('http');
http.createServer(function (req, res) {
console.log('request recieved at ' + (new Date()).getTime());
fs.readFile('./data.js', encoding='utf8',function(err, data) {
model2 = data;
console.log(model2); //logs the data.js as expected
});
fs.readFile('./helloworld.html', function(err, template) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(mustache.to_html(template.toString(),model2)); //model2 is not being passed in
});
}).listen(8081);
I would like to separate the template from the data using mustache.js in node... It is not obvious using fs.readFile if this is possible. Any Thoughts?
I'm using data.js as the array model and helloworld.html as the template
var mustache = require('mustache');
var fs = require('fs');
var http = require('http');
http.createServer(function (req, res) {
console.log('request recieved at ' + (new Date()).getTime());
fs.readFile('./data.js', encoding='utf8',function(err, data) {
model2 = data;
console.log(model2); //logs the data.js as expected
});
fs.readFile('./helloworld.html', function(err, template) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(mustache.to_html(template.toString(),model2)); //model2 is not being passed in
});
}).listen(8081);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 jinjs。它是 Jinja 的一个端口,Jinja 是一个非常好的 Python 模板系统。您可以像这样使用 npm 安装它:
在 template.tpl 中:
在 template.js 中:
输出将是:
You could try using jinjs. It is a port of the Jinja, a very good Python templating system. You can install it with npm like this :
in template.tpl :
in your template.js :
The output will be :