D3.js中的map.get()函數用於返回指定鍵字符串的值。如果創建的Map不包含指定的鍵,則返回未定義。
用法:
map.get(key)
參數:此函數接受用於指定 key 字符串的單個參數 key 。
返回值:此函數返回指定鍵字符串的值。如果創建的映射沒有指定鍵的條目,則返回undefined。
以下程序說明了D3.js中的d3.map.get()函數:
示例1:
<!DOCTYPE html>
<html>
<head>
<title>d3.map.get() 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.get() function
A = map.get("Ram");
// Getting the value for the "Ram" key
console.log(A);
</script>
</body>
</html>
輸出:
5
示例2:
<!DOCTYPE html>
<html>
<head>
<title>d3.map.get() 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.get() function
A = map1.get("Ram");
B = map2.get("Geeks");
C = map3.get("Geeks");
D = map3.get("Ram");
E = map4.get("Geeks");
// Getting the values for
// the specified keys
console.log(A);
console.log(B);
console.log(C);
console.log(D);
console.log(E);
</script>
</body>
</html>
輸出:
5 10 undefined 5 undefined
參考: https://devdocs.io/d3~5/d3-collection#map_get
相關用法
- p5.js sin()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
- p5.js log()用法及代碼示例
- PHP pos()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP key()用法及代碼示例
- p5.js tan()用法及代碼示例
- d3.js d3.mean()用法及代碼示例
- p5.js sq()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- p5.js second()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.map.get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。