Chapter 1. Introduction(入门)
第一章没有具体示例,只是交待了一些准备工作。
全书示例代码模板:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="d3.js"></script>
<script>
function draw(data) {
"use strict";
// badass visualization code goes here
}
</script>
</head>
<body>
<script>
d3.json("data/some_data.json", draw);
</script>
</body>
</html>
注意:这里的 D3 库文件是旧版的(【 v2.8.0.zip 下载】【 v5.15.1.zip 下载】)
这里出现了本书第一坑(小坑):如果使用的新版本,调用 d3.json()
要使用 Promise
写法:
d3.json("data/some_data.json").then(draw);
此外,书中还提到了一个在用 JSON
存数据时值得借鉴的基本原则:
数据不要放在 JSON 的键上。
——Micha 黄金法则
不推荐写法:
{
"bob": 20,
"alice": 23,
"drew": 30
}
推荐写法:
[
{
"name": "bob",
"age": 20
},
{
"name": "alice",
"age": 23
},
{
"name": "drew",
"age": 30
}
]
这里还提到一个方法,用于快速切换到正确的 JSON
写法:d3.entries( objJSON )
,但没有给出具体示例,这里补全:
let oldData = {
"bob": 20,
"alice": 23,
"drew": 30
};
let newData = d3.entries(oldData);
// [{key: "bob", value: 20},
// {key: "alice", value: 23},
// {key: "drew", value: 30}]
newData = newData.map(e => ({name: e.key, age: e.value}));
// [{name: "bob", age: 20},
// {name: "alice", age: 23},
// {name: "drew", age: 30}]
// 对比 ES6 中的 Object.entries():
let dataES6 = Object.entries(oldData);
// [["bob", 20],
// ["alice", 23],
// ["drew", 30]]
dataES6 = dataES6.map(e => ({name: e[0], age: e[1]}))
// (same result)
P.S. 感觉 ES6 更好用点(好吧,毕竟是 2012 年的小册子,要啥自行车啊?!?!。。。)
【填坑系列文章快速跳转】
- 《Getting Started with D3》填坑之旅(一):开篇
- 《Getting Started with D3》填坑之旅(二):第一章
- 《Getting Started with D3》填坑之旅(三):第二章(上)
- 《Getting Started with D3》填坑之旅(四):第二章(下)
- 《Getting Started with D3》填坑之旅(五):第三章(上)
- 《Getting Started with D3》填坑之旅(六):第三章(下)
- 《Getting Started with D3》填坑之旅(七):第四章(上)
- 《Getting Started with D3》填坑之旅(八):第四章(下)
- Chapter 5. Layout(布局)(整理中)
- Chapter 6. Conclusion(尾声)(整理中)