deferred.catch( failFilter )

· 8년 전 · 1763

deferred.catch( failFilter )


설명 : Deferred 오브젝트가 거부 될 때 호출 할 핸들러를 추가하십시오.



deferred.catch( fn )님의 별칭 deferred.then( null, fn )입니다. 자세한 내용은 해당 페이지를 참조하십시오.


예:

이 jQuery.get메소드는 Deferred 객체에서 파생 된 jqXHR 객체를 반환하기 때문에이 .catch메소드를 사용하여 핸들러를 거부 할 수 있습니다 .


$.get( "test.php" )

  .then( function() {

    alert( "$.get succeeded" );

  } )

  .catch( function() {

    alert( "$.get failed!" );

  } );

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 2,172
jQuery 8년 전 조회 1,631
PHP 8년 전 조회 3,022
jQuery 8년 전 조회 1,595
jQuery 8년 전 조회 1,812
jQuery 8년 전 조회 1,864
jQuery 8년 전 조회 1,720
jQuery 8년 전 조회 1,822
jQuery 8년 전 조회 1,912
jQuery 8년 전 조회 1,807
jQuery 8년 전 조회 1,820
jQuery 8년 전 조회 2,019
jQuery 8년 전 조회 1,531
jQuery 8년 전 조회 2,313
jQuery 8년 전 조회 1,764
jQuery 8년 전 조회 1,958
jQuery 8년 전 조회 1,968
jQuery 8년 전 조회 2,223
jQuery 8년 전 조회 2,170
jQuery 8년 전 조회 1,666
jQuery
[jQuery]
8년 전 조회 2,138
PHP 8년 전 조회 7,146
jQuery 8년 전 조회 2,775
jQuery 8년 전 조회 1,803
jQuery 8년 전 조회 1,884
jQuery 8년 전 조회 2,003
jQuery 8년 전 조회 1,501
jQuery 8년 전 조회 2,090
jQuery 8년 전 조회 1,851
jQuery 8년 전 조회 2,048