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


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


map.remove()函数是D3.js中的内置函数。如果创建的映射包含给定的键字符串,则它将删除条目并返回true。如果 key 字符串不存在,则返回false。

用法:

map.remove(key)

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


返回值:如果创建的映射具有指定键字符串的条目,则此函数返回true,否则返回false。

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

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.map.remove() 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.remove() function 
        A = map.remove("Ram"); 
        B = map.remove("Geek"); 
        C = map.remove("Geeks"); 
            
        // Getting true if the map has an 
        // entry for the specified key string  
        // otherwise returns false. 
        console.log(A); 
        console.log(B); 
        console.log(C); 
    </script> 
</body> 
  
</html>

输出:

true
false
true

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>d3.map.remove() 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.remove() function 
        A = map1.remove("Ram"); 
        B = map2.remove("Geek"); 
        C = map3.remove("Shyam"); 
        D = map4.remove("Ram"); 
        
        // Getting true if the map has an 
        // entry for the specified key string  
        // otherwise returns false. 
        console.log(A); 
        console.log(B); 
        console.log(C); 
        console.log(D); 
    </script> 
</body> 
  
</html>

输出:

true
false
false
false

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



相关用法


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