我正在尝试创建一个简单的应用程序,以将胡须模板编译到静态页面服务器端,这是到目前为止的内容:
var view = {
title: "Joe",
calc: function () {
return 2+4;
}
};
var mustache = require("mustache");
var template = require("./home.template");
var output = mustache.to_html(template, view);
console.log(output);
我的模板如下所示:
{{title}} spend {{calc}}
关于什么导致失败的任何建议?
这是完整的错误消息:
home.template:1
} spend {{calc}}
^
module.js:437
var compiledWrapper = runInThisContext(wrapper, filename, true);
^
SyntaxError: Unexpected token {
at Module._compile (module.js:437:25)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:362:17)
at require (module.js:378:17)
at Object.<anonymous> (/Users/MorehouseJ09/Documents/production_development/mustache/current/compiler.js:12:16)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:356:32)
任何帮助将是巨大的!
最佳答案
使用fs.readFile()
以字符串形式读取模板。除非需要javascript代码(而不是胡子代码),否则Require不会起作用。
http://nodejs.org/api/fs.html#fs_fs_readfile_filename_encoding_callback
编辑
看看是否可行...
var mustache = require("mustache");
var fs = require("fs");
var view = {
title: "Joe",
calc: function () {
return 2+4;
}
};
fs.readFile('./home.template', 'utf-8', function (err, data) {
if (err) throw err;
var output = mustache.to_html(data, view);
console.log(output);
});
关于javascript - Node mustache 渲染服务器端,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13182068/