1
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錯誤。 爲什麼?SyntaxError:意外的POST_IF錯誤
也就是說一個CoffeeScript錯誤消息,但你在這裏編寫的代碼編譯得很好。是否有其他代碼沒有顯示? –