我正在 ExpressJs 应用程序中编写一个小测试代码。代码如下:
var express = require('express');
var app = express();
var dataFile = require('./data/data.json');
app.set('port', process.env.PORT || 3000);
app.get('/', function(req, res) {
var info = '';
dataFile.speakers.forEach(function(item) {
info += `<li>
<h2>${item.name}</h2>
<p>${item.summary}</p>
</li>
`;
});
res.send(`
<h1>My Meetups</h1>
${info}
`);
});
var server = app.listen(app.get('port'), function() {
console.log('Listening on port ' + app.get('port'));
});
当我尝试执行命令时
节点应用程序/app.js
在 Git bash 终端中,我收到以下错误:
> E:\expressjs\app\app.js:11
> info += `<li>
> ^ SyntaxError: Unexpected token ILLEGAL
> at Module._compile (module.js:439:25)
> at Object.Module._extensions..js (module.js:474:10)
> at Module.load (module.js:356:32)
> at Function.Module._load (module.js:312:12)
> at Function.Module.runMain (module.js:497:10)
> at startup (node.js:119:16)
> at node.js:935:3
我尝试了什么:
- 检查节点版本:使用节点 0.10.37
- 尝试按照建议使用 --harmony 选项运行节点命令:相同的错误
- 尝试访问 ECMA 兼容性表网站:无法搜索正确的信息
我正在使用 Atom 编辑器
我怀疑的:Node 和 ECMA 的不兼容版本
有人可以帮忙吗?
谢谢