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


d3.js d3.map.entries()用法及代碼示例


D3.js中的map.entries()函數用於為創建的Map中的條目返回鍵值對象數組。

用法:

d3.map.entries();

參數:該函數不接受任何參數。


返回值:此函數為創建的映射中的條目返回鍵值對數組。

以下程序說明了D3.js中的d3.map.entries()函數:

示例1:

<!DOCTYPE html> 
<html> 
    
<head> 
    <title>d3.map.entries() Function</title> 
    
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
  <script> 
       
     // Creating a map 
     var map1 = d3.map({"a": 1}); 
     var map2 = d3.map({"GFG": 5}); 
       
     // Calling the map.entries() function 
     A = map1.entries(); 
     B = map2.entries(); 
       
     // Getting the array of key value pair 
     console.log(A); 
     console.log(B); 
  </script> 
</body> 
  
</html>

輸出:

[{"key":"a", "value":1}]
[{"key":"GFG", "value":5}]

示例2:

<!DOCTYPE html> 
<html> 
    
<head> 
    <title>d3.map.entries() Function</title> 
    
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
  <script> 
       
     // Creating a map 
     var map1 = d3.map({"Ram": 5}, {"Geek": 10}); 
     var map2 = d3.map(); 
       
     // Calling the map.entries() function 
     A = map1.entries(); 
     B = map2.entries(); 
       
     // Getting the array of key value pair 
     console.log(A); 
     console.log(B); 
  </script> 
</body> 
  
</html>

輸出:

[{"key":"Ram", "value":5}]
[]

注意:Map2為空,這就是為什麽它變成空白。

參考: https://devdocs.io/d3~5/d3-collection#map_entries



相關用法


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