我试图理解when
jQuery 中的函数和延迟对象。
$.when($.getJSON('/echo/json', function () {
console.log('sucess');
}, function () {
console.log('error');
})).then(console.log('get JSON ready!'));
此示例返回:
get JSON ready!
sucess
...但我想实现成功回调首先触发:
sucess
get JSON ready!
我怎样才能做到这一点?