ES6 解構賦值

解構賦值

ES6 容許按照必定模式,從數組和對象中提取值,對變量進行賦值,這被稱爲解構(Destructuring)。查看阮老師的原文javascript

解構賦值的要點:先後結構一致

「模式匹配」,等號兩邊的模式相同,按照對應關係(位置或名稱),左邊的變量被賦予對應的值。java

1、數組的解構賦值

數組:數組的元素是按次序排列的,變量的取值由它的位置決定;node

let [a, b, c] = [1, 2, 3];
1. 解構不成功, foo等於undefined
let [foo] = [];
let [bar, foo] = [1];
2. 不徹底解構
let [a, [b], d] = [1, [2, 3], 4];    //a b d - 1 2 4
3. 默認值
let [x, y = 'b'] = ['a']; // x='a', y='b'
let [x, y = 'b'] = ['a', undefined]; // x='a', y='b'
4. 一些規則:

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];

2、對象的解構賦值

對象:對象的屬性沒有次序,變量必須與屬性同名,才能取到正確的值;
let { foo: foo, bar: bar } = { foo: "aaa", bar: "bbb" };

簡寫爲,json

let { foo, bar } = { foo: "aaa", bar: "bbb" };
1.對象的解構賦值的內部機制,是先找到同名屬性,而後再賦給對應的變量。真正被賦值的是後者,而不是前者
let { foo: baz } = { foo: "aaa", bar: "bbb" };

上面代碼中,foo是匹配的模式,baz纔是變量。真正被賦值的是變量baz,而不是模式foo。
能夠理解爲左側表達式中':'前的都是匹配模式嗎?(暗自這麼理解)segmentfault

2.用於嵌套結構的對象
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;
3.嵌套賦值的例子
let obj = {};
let arr = [];

({ foo: obj.prop, bar: arr[0] } = { foo: 123, bar: true });
4.對象的解構也能夠指定默認值,默認值生效的條件是,對象的屬性值嚴格等於undefined
5.若是解構失敗,變量的值等於undefined
6.若是解構模式是嵌套的對象,並且子對象所在的父屬性不存在,那麼將會報錯
// 報錯
let {foo: {bar}} = {baz: 'baz'};
7.將一個已經聲明的變量用於解構賦值,必須很是當心
// 錯誤的寫法, SyntaxError: syntax error
let x;
{x} = {x: 1};

// 正確的寫法
let x;
({x} = {x: 1});

上面代碼的寫法會報錯,由於 JavaScript 引擎會將{x}理解成一個代碼塊,從而發生語法錯誤。只有不將大括號寫在行首,避免 JavaScript 將其解釋爲代碼塊,才能解決這個問題。async

8.解構賦值容許等號左邊的模式之中,不放置任何變量名
({} = [true, false]);
({} = 'abc');
({} = []);
9.因爲數組本質是特殊的對象,所以能夠對數組進行對象屬性的解構
let arr = [1, 2, 3];
let {0 : first, [arr.length - 1] : last} = arr;

3、Set

對於 Set 結構,也能夠使用數組的解構賦值
let [x, y, z] = new Set(['a', 'b', 'b']); //重複的會先被去掉,z等於undefined

4、Iterator

事實上,只要某種數據結構具備 Iterator 接口,均可以採用數組形式的解構賦值
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] = {};

5、字符串的解構賦值

const [a, b, c, d, e] = 'hello';
let {length : len} = 'hello'; //len=5

6、數值和布爾值的解構賦值

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沒法轉爲對象,因此對它們進行解構賦值,都會報錯。

7、函數參數的解構賦值

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指定默認值

8、圓括號問題

ES6 的規則是,只要有可能致使解構的歧義,就不得使用圓括號
不能使用圓括號的狀況:
(1)變量聲明語句
(2)函數參數
(3)賦值語句的模式

能夠使用圓括號的狀況只有一種:賦值語句的非模式部分,能夠使用圓括號。

9、用法總結

提取 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");

與ES6...語法一塊兒用

相關文章
相關標籤/搜索