d3.json()函数用于获取JSON文件。如果此函数具有init参数,则将其与获取操作一起调用。
用法:
d3.json(input[, init]);
参数:该函数接受上面提到和下面描述的两个参数。
- input:此参数获取输入文件的地址。
- init:该参数具有对文件数据进行某些操作的函数。
注意:在编写给定示例之前,请创建一个名为“sample.json”的JSON文件。
例:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" path1tent=
"width=device-width,
initial-scale=1.0" />
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Data of sample.json file
// {
// "place":"GeeksforGeeks",
// "visitiors":"100M",
// "target":"Client",
// "source":"Server"
// }
d3.json("sample.json", function (d) {
console.log(d);
});
</script>
</body>
</html>
输出:
相关用法
- Express.js express.json()用法及代码示例
- Express.js res.json()用法及代码示例
- JavaScript JSON stringify()用法及代码示例
- Javascript JSON parse()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js json() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。