无法使用节点服务器/ index.js重新启动我的服务器

时间:2016-09-28 18:11:14

标签: node.js server

我正在尝试使用以下命令运行服务器:

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);
});

知道可能出现什么问题吗?

1 个答案:

答案 0 :(得分:1)

尝试替换

db.each("SELECT name FROM sqlite_master WHERE type = 'table'", (err, data) => {
tables.push(data.name);});

db.each("SELECT name FROM sqlite_master WHERE type = 'table'", function(err, data) {
tables.push(data.name);});

因为您的节点版本似乎不支持此语法。