ui.util.debounce
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
עוטפת פונקציה כדי לאפשר לקרוא לה, לכל היותר, פעם אחת לכל רצף של קריאות שמופעלות שוב ושוב, כל עוד הן מופעלות במרווח זמן קצר יותר ממרווח שצוין (באלפיות שנייה). אפשר להשתמש בטכניקה הזו כדי לצמצם את מספר הקריאות לפונקציה יקרה, ועדיין לוודא שהיא תפעל בסופו של דבר.
דוגמה לשימוש: לקריאה חוזרת (callback) לאירוע שינוי ב-ui.Checkbox. אם המשתמש לוחץ על תיבת הסימון שוב ושוב, רק הקליק האחרון על תיבת הסימון יפעיל את הקריאה החוזרת.
מחזירה את הפונקציה עם ההשהיה.
שימוש | החזרות |
---|
ui.util.debounce(func, delay, scope) | פונקציה |
ארגומנט | סוג | פרטים |
---|
func | פונקציה | הפונקציה לביטול כפילויות. |
delay | מספר | אחרי שהפונקציה מופעלת פעם אחת, מספר אלפיות השנייה שצריך להמתין לפני הפעלה נוספת של הפונקציה. |
scope | אובייקט, אופציונלי | אובייקט שבהיקף שלו רוצים להפעיל את הפונקציה. |
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-26 (שעון UTC).
[null,null,["עדכון אחרון: 2025-07-26 (שעון UTC)."],[[["\u003cp\u003eDebounces a function, limiting its execution to at most once within a specified time interval, even with repeated calls.\u003c/p\u003e\n"],["\u003cp\u003eUseful for optimizing expensive functions triggered by frequent events, ensuring only the last call within the interval is executed.\u003c/p\u003e\n"],["\u003cp\u003eReturns a debounced version of the original function, which can be called directly.\u003c/p\u003e\n"],["\u003cp\u003eCustomizable with parameters like \u003ccode\u003edelay\u003c/code\u003e for setting the debounce interval and \u003ccode\u003escope\u003c/code\u003e for controlling the function's execution context.\u003c/p\u003e\n"]]],[],null,["# ui.util.debounce\n\n\u003cbr /\u003e\n\nWraps a function to allow it to be called, at most, once for each sequence of calls fired repeatedly so long as they are fired less than a specified interval apart (in milliseconds). This can be used to reduce the number of invocations of an expensive function while ensuring it eventually runs.\n\n\u003cbr /\u003e\n\nExample use: For the callback to a change event on a ui.Checkbox. If the user clicks the checkbox repeatedly, only the last click of the checkbox will run the callback.\n\nReturns the debounced function.\n\n| Usage | Returns |\n|--------------------------------------------|----------|\n| `ui.util.debounce(func, delay, `*scope*`)` | Function |\n\n| Argument | Type | Details |\n|----------|------------------|------------------------------------------------------------------------------------------------------------------------------------------------|\n| `func` | Function | The function to debounce. |\n| `delay` | Number | After the function is called once, the number of milliseconds to delay for an additional invocation of the function before allowing it to run. |\n| `scope` | Object, optional | Object in whose scope to call the function. |"]]