我有 2 个功能。
function f1() {
$.ajax(..., success: function(response) {
// some code executed whenever request is completed.
}
}
function f2() {
// my code
}
我需要一个接一个地调用这些函数。
f1() // waiting until ajax request in the function is complete.
f2()
我试过$.when().then()
了,但它似乎没有用。