我正在学习一个教程,我无法理解这个错误,因为我仔细检查了一下,可以肯定的是我的新手再次受到攻击...
SyntaxError: Unexpected token {
at new Script (vm.js:51:7)
at createScript (vm.js:138:10)
at Object.runInThisContext (vm.js:199:10)
at Module._compile (module.js:624:28)
at Object.Module._extensions..js (module.js:671:10)
at Module.load (module.js:573:32)
at tryModuleLoad (module.js:513:12)
at Function.Module._load (module.js:505:3)
at Module.require (module.js:604:17)
at require (internal/module.js:11:18)
[nodemon] app crashed - waiting for file changes before starting.
..
module.exports = function() {
this.getNoticias(connection, callback){
connection.query('SELECT * FROM noticias', callback);
}
return this;
}
答案 0 :(得分:2)
您用来声明函数的表达式无效。
要声明一个函数,您应该使用this.getNoticias = function(...)
因此完整的代码应如下所示:
this.getNoticias = function(connection, callback){
connection.query('select * from noticias', callback);
}