1

我正在学习使用 Coffeescript 在 Express.js 上制作应用程序。我已将我的代码上传到:https ://github.com/findjashua/contactlist

当我尝试运行该应用程序时,我收到以下错误:

app.coffee:11:24: error: unexpected ,
res.send 'Hello World'
                   ^

我不明白这里的问题。有任何想法吗?

4

1 回答 1

3

在contacts.coffee的第11行你有

exports.index = (req, res) ->
  ContactModel.find (err, contacts), ->
    if not err

在 .之后删除中心线上的那个逗号contacts)

于 2013-07-16T17:56:01.213 回答