2016-09-28 124 views
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); 
}); 

任何想法可能是什麼錯?

+0

您使用哪個節點版本? –

+1

[Node 4.x及更高版本支持箭頭功能。](http://node.green/#arrow-functions)看起來您可能正在使用舊版本。 –

回答

1

嘗試

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

更換

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

,因爲它似乎你的節點版本是不支持此語法。

+0

謝謝!!它的工作原理...我是新來的:) – akaliza