0
我嘗試使用運行服務器:無法使用節點服務器/ index.js重新啓動我的服務器
node server/index.js
但我得到這個:
SyntaxError: Unexpected token >
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:902:3
索引.js文件是不及格:
db.each("SELECT name FROM sqlite_master WHERE type = 'table'", (err, data) => {
tables.push(data.name);
});
任何想法可能是什麼錯?
您使用哪個節點版本? –
[Node 4.x及更高版本支持箭頭功能。](http://node.green/#arrow-functions)看起來您可能正在使用舊版本。 –