所以我一直试图找出如何在CoffeeScript中识别与http get错误响应相关联的错误代码。
以下是我使用
的功能$scope.someRandomFunction = ->
url = $config.serverAddress + 'methodOnTheServer'
url += '?someParameter=' + someParameter.ID
$http.get(url)
.success (tempFileName) ->
link = $config.serverAddress + 'anotherServerMethod'
link += '?tempFileName=' + tempFileName
link += '&desiredFilename=' + someParameter.Name
$window.location.href = link
.error (error) ->
console.log "Unable to perform this action ", error
以下是我尝试过的此表单上的部分网站和之前答案的列表:
http://www.ibm.com/developerworks/library/wa-coffee4/
Handling Http erorrs in coffeescript
感谢您的时间
答案 0 :(得分:1)
在Angular中,获取http状态代码add another parameter to the callback.
$http.get(url)
.success (tempFileName, status) ->
console.log(status)