angularjs – 角$http / jquery完全等效

前端之家收集整理的这篇文章主要介绍了angularjs – 角$http / jquery完全等效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法用角度$http模块来模拟 jquery‘完整’回调?我有一些代码,无论请求成功还是失败,我想执行,现在我发现自己不得不写这个:
$http.get(someUrl).success(function(){
        successCode();
        completeCode();
    }).error(function(){
        errorCode();
        completeCode();
    })

但我宁愿写一些类似的东西:

$http.get(someUrl).success(function(){
        successCode();
    }).error(function(){
        errorCode();
    }).complete(function(){
        completeCode();
    })

我也尝试过使用promise API,但我最终也有同样的问题.任何建议?

@H_403_9@
@H_403_9@
更新2014年8月:.always已更名,最终版本为Angular.喜欢.

请注意,为了支持IE8,您必须使用括号符号作为[“finally”].

您可以在AngularJS中使用.always

这个更改是相当新的(您可以在jQuery中执行一段时间),您可以看到提交here.这需要您具有AngularJS 1.1.5或更高版本.

always(callback) – allows you to observe either the fulfillment or rejection of a promise,
but to do so without modifying the final value. This is useful to release resources or do some
clean-up that needs to be done whether the promise was rejected or resolved. See the 07001 for
more information.

Fiddle

@H_403_9@ 原文链接:/angularjs/142921.html

猜你在找的Angularjs相关文章