0

次のコードは簡単です

//Generic success routine, let the developer know, store the results
function genericSuccess( _data , textStatus , jqXHR )
{
  data[this.url] = _data;
}

jQuery.when(  $.ajax({ url: metaKey, success: genericSuccess }) , 
              $.ajax({ url: docsKey, success: genericSuccess }) ).then( console.log( "Then!" ) );

しかし、console.log('Then')最初にトリガーし続けます。なんで ?これは 1.7.2 および 1.8.3 では機能しません。

4

1 に答える 1