El método deferred.reject() en jQuery se usa para rechazar un objeto Deferred y llamar a cualquier failCallbacks con los argumentos dados.
Sintaxis:
deferred.reject( [args] )
Parámetros:
- args: Es un parámetro opcional que se pasa a los failCallbacks.
Valor devuelto: este método devuelve el objeto diferido.
Ejemplo 1: en este ejemplo, se llama al método de rechazo() con los argumentos.
html
<!DOCTYPE HTML> <html> <head> <script src= "https://code.jquery.com/jquery-3.5.0.js"> </script> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <p> jQuery | deferred.reject() method </p> <button onclick="Geeks();"> click here </button> <p id="GFG"></p> <script> function Func(val, div) { $(div).append(val); } function Geeks() { var def = $.Deferred(); def.fail(Func); def.progress(Func); def.reject('reject() method is ' + 'called with arguments and' + ' Deferred object is ' + 'rejected', '#GFG') } </script> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, el método de rechazo() se llama sin argumentos.
html
<!DOCTYPE HTML> <html> <head> <script src= "https://code.jquery.com/jquery-3.5.0.js"> </script> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <p> JQuery | deferred.reject() method </p> <button onclick="Geeks();"> click here </button> <p id="GFG"></p> <script> function Func() { $('#GFG').append ("reject() method is called " + "without arguments and " + "Deferred object is rejected"); } function Geeks() { var def = $.Deferred(); def.fail(Func); def.progress(Func); def.reject() } </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA