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


d3.js queue.defer()用法及代碼示例


d3.js中的queue.defer()函數用於將異步任務回調添加到隊列中。任務是要執行的函數。任務完成後必須執行回調。

用法:

queue.defer(task[, arguments…]);

參數:該函數接受如上所述和以下描述的單個參數:

  • task:這是要執行以執行特定任務的函數。

返回值:此函數返回對象。

下麵給出了上述函數的一些示例。



範例1:當隊列的大小等於隊列數時。defer()調用。

HTML

<!DOCTYPE html>  
<html lang="en">  
<head>  
    <meta charset="UTF-8">  
    <meta name="viewport"
            path1tent="width=device-width,  
                       initial-scale=1.0">  
    <title>Document</title>  
</head>  
<style> 
</style>  
<body>  
  <script src =  
"https://d3js.org/d3.v4.min.js">  
  </script>  
  <script> 
    function a(){ 
      console.log("from a") 
    } 
    function b(){ 
      console.log("from b") 
    } 
    function c(){ 
      console.log("from c") 
    } 
    let q=d3.queue(3) 
    // Calling defer three times 
    q.defer(b) 
    q.defer(a) 
    q.defer(c) 
    console.log(q) 
    console.log("Size of q is:",q._size) 
  </script>  
</body>  
</html>

輸出:

範例2:當隊列的大小小於隊列時。defer()調用。

HTML

<!DOCTYPE html>  
<html lang="en">  
<head>  
    <meta charset="UTF-8">  
    <meta name="viewport"
            path1tent="width=device-width,  
                       initial-scale=1.0">  
    <title>Document</title>  
</head>  
<style>  
</style>  
<body>  
  <script src =  
"https://d3js.org/d3.v4.min.js">  
  </script>  
  <script> 
    function a(){ 
      console.log("from a") 
    } 
    function b(){ 
      console.log("from b") 
    } 
    function c(){ 
      console.log("from c") 
    } 
    let q=d3.queue(1) 
    // Calling defer three times but it will add only function 
    // call b because the size of the queue is one. 
    q.defer(b) 
    q.defer(a) 
    q.defer(c) 
    console.log(q) 
    console.log("Size of q is:",q._size) 
  </script>  
</body>  
</html>

輸出:




相關用法


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