我有一个从客户端角度到服务器的http get请求
如果请求返回404,则应用会被重定向到我的主页的默认页面。
如何防止错误功能处理器上的重定向?
$http({
method: 'POST',
url: '/customers/' + customer.id + "/addresses",
data: address
})
.success(function(address){
})
.error(function(data){
//prevent the 404 redirect here
});