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


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


D3.js中的map.size()函數用於返回創建的映射中的條目數。

用法:

map.size()

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


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

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

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.map.size() Function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Creating a map 
        var map = d3.map({"Ram": 5, "Geeks": 10, "gfg": 15}); 
        
        // Calling the map.size() function 
        A = map.size(); 
        
        // Getting the the number of 
        // entries in the map. 
        console.log(A); 
    </script> 
</body> 
  
</html>

輸出:

3

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.map.size() Function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Creating some maps 
        var map1 = d3.map({"Ram": 5}); 
        var map2 = d3.map({"Geeks": 10}); 
        var map3 = d3.map({"Ram": 5, "Geeks": 10}); 
        var map4 = d3.map(); 
      
        // Calling the map.size() function 
        A = map1.size(); 
        B = map2.size(); 
        C = map3.size(); 
        D = map4.size(); 
      
        // Getting the number of entries in the map. 
        console.log(A); 
        console.log(B); 
        console.log(C); 
        console.log(D); 
    </script> 
</body> 
  
</html>

輸出:

1
1
2
0

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



相關用法


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