angularjs – Angular HttpPromise:`success` /`error`方法和`then`的参数的区别

前端之家收集整理的这篇文章主要介绍了angularjs – Angular HttpPromise:`success` /`error`方法和`then`的参数的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
根据 AngularJS doc调用$ http返回如下:

Returns a promise object with the standard then method and two http specific methods: success and error. The then method takes two arguments a success and an error callback which will be called with a response object. The success and error methods take a single argument – a function that will be called when the request succeeds or fails respectively. The arguments passed into these functions are destructured representation of the response object passed into the then method.

除了响应对象在一种情况下被破坏的事实,我没有得到之间的区别

>传递成功/错误回调作为promise.then的参数传递
>作为promise的promise.success / promise.error方法的参数传递的回调

有没有?这两种不同的方式传递看似相同的回调的点是什么?

NB这个答案在事实上不正确;如下面的注释所指出的,success()返回原始的promise。我不会改变;并将其保留到OP进行编辑。

2的主要区别是.then()调用返回一个promise(使用从回调返回的值解析),而.success()是更传统的注册回调方法,不返回promise。

基于Promise的回调(.then())使得链接promises变得容易(执行调用,解释结果,然后做另一个调用,解释结果,做另一个调用等)。

.success()方法是一个简化的,方便的方法,当您不需要链调用或使用promise API(例如,在路由)。

简而言之:

> .then() – promise API的全部功能,但稍微更冗长> .success() – 不返回一个promise,但offeres略多一些convienient语法

原文链接:https://www.f2er.com/angularjs/147507.html

猜你在找的Angularjs相关文章