Angular $http status (-1)

荒凉一梦 提交于 2019-12-17 19:33:58

问题


I call a backend service/resource by AngularJs $HTTP GET. When it is not available it returns 404 and Chrome Network tab shows that it is 404 as the followings:

Request Method:OPTIONS
Status Code:404 Not Found

BUT inside AngularJs $HTTP call result, I get status=-1 and not 404:

{data: null, status: -1, config: Object, statusText: ""}

Why does it happen?

NB ) I have a jetty Service on the backend and enabled CORS:

"Access-Control-Allow-Origin":"*"
"Access-Control-Allow-Headers": "origin, content-type, accept, authorization"
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS, HEAD"

回答1:


It returns -1 because, as the traces show, the GET request has not even been sent. What has been sent is the pre-flight OPTIONS request, which, by returning 404, prevented the browser to send the actual GET request.

Your server shouldn't return a 404 response for the OPTIONS request. It should return a 200 response.



来源:https://stackoverflow.com/questions/33483220/angular-http-status-1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!