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
相关用法
- p5.js cos()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js log()用法及代码示例
- p5.js tan()用法及代码示例
- PHP pos()用法及代码示例
- d3.js d3.sum()用法及代码示例
- PHP key()用法及代码示例
- p5.js sin()用法及代码示例
- p5.js second()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP each()用法及代码示例
- PHP each()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.map.entries() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。