@@ -64,14 +64,15 @@ function headersGetter(headers) {
64
64
* @param {* } data Data to transform.
65
65
* @param {function(string=) } headers Http headers getter fn.
66
66
* @param {(Function|Array.<Function>) } fns Function or an array of functions.
67
+ * @param {boolean } success True when this is response and it is success
67
68
* @returns {* } Transformed data.
68
69
*/
69
- function transformData ( data , headers , fns ) {
70
+ function transformData ( data , headers , fns , success ) {
70
71
if ( isFunction ( fns ) )
71
- return fns ( data , headers ) ;
72
+ return fns ( data , headers , success ) ;
72
73
73
74
forEach ( fns , function ( fn ) {
74
- data = fn ( data , headers ) ;
75
+ data = fn ( data , headers , success ) ;
75
76
} ) ;
76
77
77
78
return data ;
@@ -739,13 +740,12 @@ function $HttpProvider() {
739
740
return promise ;
740
741
741
742
function transformResponse ( response ) {
742
- // make a copy since the response must be cacheable
743
- var resp = extend ( { } , response , {
744
- data : transformData ( response . data , response . headers , config . transformResponse )
745
- } ) ;
746
- return ( isSuccess ( response . status ) )
747
- ? resp
748
- : $q . reject ( resp ) ;
743
+ var success = isSuccess ( response . status ) ,
744
+ // make a copy since the response must be cacheable
745
+ resp = extend ( { } , response , {
746
+ data : transformData ( response . data , response . headers , config . transformResponse , success )
747
+ } ) ;
748
+ return success ? resp : $q . reject ( resp ) ;
749
749
}
750
750
751
751
function mergeHeaders ( config ) {
0 commit comments