當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Lodash _.delay()用法及代碼示例


Lodash是一個JavaScript庫,可在underscore.js之上運行。 Lodash幫助處理數組,字符串,對象,數字等。

_.delay()方法用於在指定的等待時間(以毫秒為單位)結束後調用給定函數作為參數。調用該函數時,會提供任何其他參數。

用法

_.delay( func, wait, args )

參數:此方法接受上述和以下所述的三個參數:

  • func:必須延遲該函數。
  • wait:它是函數調用延遲的毫秒數。
  • args:它是調用給定函數的參數。它是一個可選參數。

返回值:此方法返回計時器ID。



範例1:在此示例中,由於等待時間為3秒,因此在延遲3秒後打印內容。

Javascript

// Requiring lodash library 
const _ = require('lodash'); 
  
// Using the _.delay() method 
// with its parameter 
_.delay(function(content) { 
    console.log(content); 
  }, 3000, 'GeeksforGeeks!'); 
  
// Print the content after this line 
console.log('Content:');

輸出:

Content:
GeeksforGeeks!

範例2:在此示例中,每個整數在2秒鍾的延遲後打印。

Javascript

// Requiring lodash library 
const _ = require('lodash'); 
  
// Defining func parameter 
let func = number => { 
  console.log(number); 
}; 
  
// Defining for loop 
for(let i = 1; i <= 5; i++) { 
      
    // Using the _.delay() method 
    // with its parameter 
    _.delay(func, 2000 * (i + 1), i); 
} 
  
// Prints the integer after this line 
console.log('Integers are as follows:');

輸出:

Integers are as follows:
1
2
3
4
5

相關用法


注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Lodash _.delay() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。