jQuery API の deferred . then( doneCallbacks, failCallbacks[, progressCallbacks] ) は、繰延オブジェクトが、解決されたとき、リジェクト(拒否)されたとき、進行状況の通知を生成するときに、呼び出すハンドラを、追加するメソッド。
「jQuery Version 1.8」で削除された。
deferred . then( doneFilter[, failFilter][, progressFilter ] ) メソッドで代替できる。
引数
- doneCallbacks
繰延が解決されたときに呼び出す関数、または関数の配列。
- failCallbacks
繰延がリジェクト(拒否)されたときに呼び出す関数、または、関数の配列。
- progressCallbacks
繰延が進行状況の通知を生成するときに呼び出す関数、または関数の配列。
deferred . notify( args ) または deferred . notifyWith( context[, args] ) により、繰延オブジェクトが進行状況の通知を生成するときに、progressCallbacksを呼び出す。
戻り値
- Deferred
繰延オブジェクト。
記述例
deferredObject = jQuery . Deferred();
deferredObject . then(
function() {
jQuery( '#sample' ) . text( '完了' );
},
function() {
jQuery( '#sample' ) . text( '失敗' );
},
function( count ) {
jQuery( '#sample' ) . text( '進行中(' + count + ')' );
}
);
var count = 0;
jQuery( '#button' ) . click( function() {
count ++;
if( count < 3 ) {
deferredObject . notify( count );
} else {
deferredObject . resolve();
}
};
deferredObject . then(
function() {
jQuery( '#sample' ) . text( '完了' );
},
function() {
jQuery( '#sample' ) . text( '失敗' );
},
function( count ) {
jQuery( '#sample' ) . text( '進行中(' + count + ')' );
}
);
var count = 0;
jQuery( '#button' ) . click( function() {
count ++;
if( count < 3 ) {
deferredObject . notify( count );
} else {
deferredObject . resolve();
}
};
idが「button」のボタンをクリックすると、1度目と2度目のクリック時は、idが「sample」の要素に「進行中(1)」「進行中(2)」と表示する。3度目のクリック時は、idが「sample」の要素に「完了」と表示する。
実装例(サンプル)
実装例(サンプル)の動作について
- 1回目の「fadeTo」ボタンクリック時は、オレンジ色のボックス要素の不透明度を70%に変更する。「fadeTo」ボタンの右側に「進行中(1)」と表示する。
- 2回目の「fadeTo」ボタンクリック時は、オレンジ色のボックス要素の不透明度を40%に変更する。「fadeTo」ボタンの右側に「進行中(2)」と表示する。
- 3回目の「fadeTo」ボタンクリック時は、オレンジ色のボックス要素の不透明度を10%に変更する。「fadeTo」ボタンの右側に「完了」と表示し、「fadeTo」ボタンを無効にしクリックできないようにする。
実装例(サンプル)のソースコード
JavaScript
<script>
<!--
jQuery( function() {
deferredObject = jQuery . Deferred();
deferredObject . then(
function() {
jQuery( '#jquery-sample-textStatus' ) . text( '完了' );
jQuery( '#jquery-sample-button' ) . prop( 'disabled', true );
},
function() {
jQuery( '#jquery-sample-textStatus' ) . text( '失敗' );
},
function( count ) {
jQuery( '#jquery-sample-textStatus' ) . text( '進行中(' + count + ')' );
}
);
var count = 0;
jQuery( '#jquery-sample-button' ) . click( function() {
count ++;
var opacity = 1 - count * 30 / 100;
jQuery( '#jquery-sample-fadeTo' ) . fadeTo( 1000, opacity );
if( count < 3 ) {
deferredObject . notify( count );
} else {
deferredObject . resolve();
}
} );
} );
// -->
</script>
<!--
jQuery( function() {
deferredObject = jQuery . Deferred();
deferredObject . then(
function() {
jQuery( '#jquery-sample-textStatus' ) . text( '完了' );
jQuery( '#jquery-sample-button' ) . prop( 'disabled', true );
},
function() {
jQuery( '#jquery-sample-textStatus' ) . text( '失敗' );
},
function( count ) {
jQuery( '#jquery-sample-textStatus' ) . text( '進行中(' + count + ')' );
}
);
var count = 0;
jQuery( '#jquery-sample-button' ) . click( function() {
count ++;
var opacity = 1 - count * 30 / 100;
jQuery( '#jquery-sample-fadeTo' ) . fadeTo( 1000, opacity );
if( count < 3 ) {
deferredObject . notify( count );
} else {
deferredObject . resolve();
}
} );
} );
// -->
</script>
CSS
<style type="text/css">
<!--
#jquery-sample {
margin: 10px;
}
#jquery-sample-fadeTo {
margin: 10px;
padding: 10px;
height: 100px;
background-color: orange;
border: 1px solid gray;
border-radius: 10px;
}
-->
</style>
<!--
#jquery-sample {
margin: 10px;
}
#jquery-sample-fadeTo {
margin: 10px;
padding: 10px;
height: 100px;
background-color: orange;
border: 1px solid gray;
border-radius: 10px;
}
-->
</style>
HTML
<div id="jquery-sample">
<p>
<button id="jquery-sample-button">fadeTo</button>
<span id="jquery-sample-textStatus"></span>
</p>
<div id="jquery-sample-fadeTo"></div>
</div>
<p>
<button id="jquery-sample-button">fadeTo</button>
<span id="jquery-sample-textStatus"></span>
</p>
<div id="jquery-sample-fadeTo"></div>
</div>