Este método deferred.rejectWith() en jQuery se usa para rechazar un objeto Diferido y llamar a failCallbacks junto con el contexto y los argumentos proporcionados.
Sintaxis:
deferred.rejectWith(context[, args])
Parámetros:
- context: este parámetro es el contexto que se pasa a failCallbacks como el objeto ‘this’.
- args: este parámetro es una array opcional de argumentos que se pasan a failCallbacks.
Valor devuelto: este método devuelve el objeto diferido.
Ejemplo 1: En este ejemplo, rechazamos el objeto Diferido con dos argumentos y procesamos cualquier devolución de llamada fallida.
<!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.rejectWith() method </p> <button onclick="Geeks();"> click here </button> <p id="GFG_DOWN"></p> <script> function Func(val, div) { $(div).append(val); } function Geeks() { var def = $.Deferred(); def.fail(Func); def.rejectWith(this, ['Deferred is rejected by rejectWith() method.<br/>', '#GFG_DOWN']); } </script> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, rechazamos el objeto Deferred con solo un argumento y procesamos cualquier failCallbacks.
<!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.rejectWith() method </p> <button onclick="Geeks();"> click here </button> <p id="GFG_DOWN"></p> <script> function Func(div) { $(div).append( 'Deferred is rejected by rejectWith() method'); } function Geeks() { var def = $.Deferred(); def.fail(Func); def.rejectWith(this, ['#GFG_DOWN']); } </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