ES6 容許按照必定模式,從數組和對象中提取值,對變量進行賦值,這被稱爲解構(Destructuring)。查看阮老師的原文javascript
解構賦值的要點:先後結構一致
「模式匹配」
,等號兩邊的模式相同,按照對應關係(位置或名稱),左邊的變量被賦予對應的值。java
數組:數組的元素是按次序排列的,變量的取值由它的位置決定;
nodelet [a, b, c] = [1, 2, 3];
let [foo] = []; let [bar, foo] = [1];
let [a, [b], d] = [1, [2, 3], 4]; //a b d - 1 2 4
默認值
let [x, y = 'b'] = ['a']; // x='a', y='b' let [x, y = 'b'] = ['a', undefined]; // x='a', y='b'
ES6 內部使用嚴格相等運算符(===)
es6
let [x = 1] = [undefined]; //x= 1 let [x = 1] = [null]; //x= null
若是默認值是一個表達式,那麼這個表達式是惰性求值的, 如下f不會執行
ajax
function f() { console.log('aaa'); } let [x = f()] = [1];
對象:對象的屬性沒有次序,變量必須與屬性同名,才能取到正確的值;
let { foo: foo, bar: bar } = { foo: "aaa", bar: "bbb" };簡寫爲,json
let { foo, bar } = { foo: "aaa", bar: "bbb" };
let { foo: baz } = { foo: "aaa", bar: "bbb" };
上面代碼中,foo是匹配的模式,baz纔是變量。真正被賦值的是變量baz,而不是模式foo。能夠理解爲左側表達式中':'前的都是匹配模式嗎?
(暗自這麼理解)segmentfault
let obj = { p: [ 'Hello', { y: 'World' } ] }; let { p: [x, { y }] } = obj; x // "Hello" y // "World"
注意
:這時p是模式,不是變量,所以不會被賦值。若是p也要做爲變量賦值,能夠寫成下面這樣。數組
let { p, p: [x, { y }] } = obj;
再一個例子數據結構
const node = { loc: { start: { line: 1, column: 5 } } }; let { loc, loc: { start }, loc: { start: { line }} } = node;
let obj = {}; let arr = []; ({ foo: obj.prop, bar: arr[0] } = { foo: 123, bar: true });
默認值
,默認值生效的條件是,對象的屬性值嚴格等於undefined
// 報錯 let {foo: {bar}} = {baz: 'baz'};
// 錯誤的寫法, SyntaxError: syntax error let x; {x} = {x: 1}; // 正確的寫法 let x; ({x} = {x: 1});
上面代碼的寫法會報錯,由於 JavaScript 引擎會將{x}理解成一個代碼塊,從而發生語法錯誤。只有不將大括號寫在行首
,避免 JavaScript 將其解釋爲代碼塊,才能解決這個問題。async
({} = [true, false]); ({} = 'abc'); ({} = []);
對數組進行對象屬性的解構
let arr = [1, 2, 3]; let {0 : first, [arr.length - 1] : last} = arr;
對於 Set 結構,也能夠使用數組的解構賦值
let [x, y, z] = new Set(['a', 'b', 'b']); //重複的會先被去掉,z等於undefined
function* fibs() { let a = 0; let b = 1; while (true) { yield a; [a, b] = [b, a + b]; } } let [first, second, third, fourth, fifth, sixth] = fibs(); sixth // 5
// 報錯 let [foo] = 1; let [foo] = false; let [foo] = NaN; let [foo] = undefined; let [foo] = null; let [foo] = {};
const [a, b, c, d, e] = 'hello'; let {length : len} = 'hello'; //len=5
let {toString: s} = 123; s === Number.prototype.toString // true let {toString: s} = true; s === Boolean.prototype.toString // true let { prop: x } = undefined; // TypeError let { prop: y } = null; // TypeError
解構賦值的規則是,只要等號右邊的值不是對象或數組,就先將其轉爲對象
。因爲undefined和null沒法轉爲對象,因此對它們進行解構賦值,都會報錯。
function add([x, y]){ return x + y; } add([1, 2]); // 3
[[1, 2], [3, 4]].map(([a, b]) => a + b); // [ 3, 7 ]
區別如下兩組
function move({x = 0, y = 0} = {}) { return [x, y]; } move({}); // [0, 0] function move({x, y} = { x: 0, y: 0 }) { return [x, y]; } move({}); // [undefined, undefined], 爲函數move的參數指定默認值,而不是爲變量x和y指定默認值
ES6 的規則是,只要有可能致使解構的歧義,就不得使用圓括號
不能使用圓括號的狀況:
(1)變量聲明語句
(2)函數參數
(3)賦值語句的模式
能夠使用圓括號的狀況只有一種:賦值語句的非模式部分,能夠使用圓括號。
提取 JSON 數據
let jsonData = { id: 42, status: "OK", data: [867, 5309] }; let { id, status, data: number } = jsonData; // id, status, number
交換變量的值
let x = 1; let y = 2; [x, y] = [y, x];
從函數返回多個值
// 返回一個數組 function example() { return [1, 2, 3]; } let [a, b, c] = example(); // 返回一個對象 function example() { return { foo: 1, bar: 2 }; } let { foo, bar } = example();
函數參數的定義
// 參數是一組有次序的值 function f([x, y, z]) { ... } f([1, 2, 3]); // 參數是一組無次序的值 function f({x, y, z}) { ... } f({z: 3, y: 2, x: 1});
函數參數的默認值
jQuery.ajax = function (url, { async = true, beforeSend = function () {}, cache = true, complete = function () {}, crossDomain = false, global = true, // ... more config } = {}) { // ... do stuff };
就避免了在函數體內部再寫var foo = config.foo || 'default foo';這樣的語句
遍歷 Map 結構
// 獲取鍵名 for (let [key] of map) { // ... } // 獲取鍵值 for (let [,value] of map) { // ... }
輸入模塊的指定方法
const { SourceMapConsumer, SourceNode } = require("source-map");