当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js d3.map.has()用法及代码示例


如果创建的Map具有指定键字符串的条目,则D3.js中的map.has()函数用于返回true。 map.has()函数的值可以为null或未定义。

用法:

map.has(key)

参数:此函数接受指定为 key 字符串的单个参数 key 。


返回值:如果创建的映射具有指定键字符串的条目,则此函数返回true。该值可以为null或未定义。

以下程序说明了D3.js中的d3.map.has()函数:

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.map.has() function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Creating a map 
        var map = d3.map({"Ram": 5}); 
        
        // Calling the map.has() function 
        A = map.has("Ram"); 
        B = map.has("Geeks"); 
        
        // Getting the true if the map 
        // has an entry for the specified key string 
        // else false 
        console.log(A); 
        console.log(B); 
    </script> 
</body> 
  
</html>

输出:

true
false

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.map.has() function</title> 
  
    <script src='https://d3js.org/d3.v4.min.js'></script> 
</head> 
  
<body> 
    <script> 
          
        // Creating a map 
        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.has() function 
        A = map1.has("Ram"); 
        B = map2.has("Geeks"); 
        C = map3.has("Geeks"); 
        D = map3.has("Ram"); 
        E = map4.has("Geeks"); 
        
        // Getting the true if the map 
        // has an entry for the specified key string 
        // else false 
        console.log(A); 
        console.log(B); 
        console.log(C); 
        console.log(D); 
        console.log(E); 
    </script> 
</body> 
  
</html>

输出:

true
true
false
true
false

参考: https://devdocs.io/d3~5/d3-collection#map_has



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.map.has() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。