I'm relatively new to js so please forgive me if my wording isn't quite right. I've also created a jsfiddle to demonstrate the issue.
Overview
In the app I'm working on, I have a function with a jquery ajax call, like this:
function scenario1(ajaxCfg) {
return $.ajax(ajaxCfg)
}
I want to change this function, but without in any way changing the inputs or outputs (as this function is called hundreds of times in my application).
The change is to make a different ajax call, THEN make the call specified. I currently have it written like this:
function callDependency() { //example dependency
return $.ajax(depUri)
}
function scenario2(ajaxCfg) {
return callDependency().then(() => $.ajax(ajaxCfg))
}
Desired Result
I want these two returned objects to be identical:
let result1 = scenario1(exampleCall)
let result2 = scenario2(exampleCall)
More specifically, I want result2
to return the same type of object as result1
.
Actual Result
result1
is (obviously) the result of the ajax call, which is a jqXHR
object that implements the promise interface and resolves to the same value as result2
, which is a standard promise.
Since result2
is not a jqXHR
object, result2.error()
is undefined, while result1.error()
is defined.
I did attempt to mock up these methods (simply adding a .error
function to the return result, for example), but unfortunately even when doing this, result1.done().error
is defined while result2.done().error
is undefined
.
Wrapping (or unwrapping) it up
In a nutshell, I want to return the jqXHR
result of the .then()
lambda function in scenario2
as the result of the scenario2
function. In pseudocode, I want:
function scenario2(ajaxCfg) {
return callDependency().then(() => $.ajax(ajaxCfg)).unwrapThen()
} //return jqXHR