SyntaxError:意外的POST_IF错误

时间:2014-02-07 14:06:56

标签: node.js coffeescript

options = {
    host : 'http://localhost:8080'
    port : 8080
    path : '.frameset?__report=stock_report.rptdesign'
}

http.get(options , (res) ->
    console.log "Got response : " + res.statusCode
    res.on 'data' , (chunk) ->
        console.log "BODY : " + chunk
    ).on 'error' , (e) ->
    console.log "Got error : " + e.message

我想在nodejs中发送tomcat服务器的http请求。 但发生意外的POST_IF错误。 为什么呢?

1 个答案:

答案 0 :(得分:3)

如果将制表符与空格组合以进行缩进,或使用错误的缩进,则coffeescript会出现意外的POST_IF错误。解决方案:

- 确保您仅使用制表符或空格进行缩进 - 如果你在Intellij Idea,Code - >重新格式化代码(它试图正确地缩进)