我正在 AngularJs 中使用 $http
,我不确定如何使用返回的承诺和处理错误。
I have this code:
$http
.get(url)
.success(function(data) {
// Handle data
})
.error(function(data, status) {
// Handle HTTP error
})
.finally(function() {
// Execute logic independent of success/error
})
.catch(function(error) {
// Catch and handle exceptions from success/error/finally functions
});
这是个好办法,还是有更简单的办法?