0
我有以下代碼無法正常工作。
$。如果在.done
中的操作完成之前立即返回,則立即返回。我如何推遲行動直至.done
完成?
var getReturn = function() {
$.post("/app/return.php", { auth: auth })
.done(function(data) {
// Does some calculations, does not return values
});
}
$.when(getReturn())
.done(function(response1) {
console.log('fire');
});
對不起返回由
$.post
返回的承諾,我不知道該函數是如何比我貼不同... – kylex@kylex有一個' '$ .post'之前的'return'關鍵字 –
噢,天啊,錯過一件簡單的事情。謝謝! – kylex