gpt4 book ai didi

javascript - CoffeeScript 编译 : Unexpected IF

转载 作者:数据小太阳 更新时间:2023-10-29 05:04:05 26 4
gpt4 key购买 nike

我正在为 API 编写一些 CoffeeScript 代码,并且在我的代码的错误捕获部分放置了一个 IF 语句。现在,在编译过程中,CoffeeScript 说 IF 语句是意外的。

#  Handle Errors
app.error (err, req, res, next) ->
if err instanceof NotFound
res.send '404, not found.'
else
res.send '500, internal server error.'

app.get '/*', (req, res) ->
throw new NotFound

NotFound = (msg) ->
this.name = 'NotFound'
Error.call this, msg
Error.captureStackTrace this, arguments.callee

错误是

/home/techno/node/snaprss/application.coffee:22:5: error: unexpected if
if err instanceOf NotFound
^^

有人知道问题出在我的代码中吗?

最佳答案

Unexpected 'INDENT' in CoffeeScript Example Code

这个问题看起来有些相似。

因此请考虑在编辑器中检查制表符和空格。

关于javascript - CoffeeScript 编译 : Unexpected IF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22026629/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com