ES6入門---變量的解構賦值

ES6 容許按照必定模式,從數組和對象中提取值,對變量進行賦值,這被稱爲解構
<!--more-->git

數組的解構賦值

let [a, b, c] = [1, 2, 3]

能夠按照對應的位置,對變量進行賦值
此種寫法至關於模式匹配,例子以下:github

// 數組嵌套賦值
let [foo, [[bar], baz]] = [1, [[2], 3]];
foo // 1
bar // 2
baz // 3

// 部分匹配
let [ , , third] = ["foo", "bar", "baz"];
third // "baz"

let [x, , y] = [1, 2, 3];
x // 1
y // 3

// 部分匹配
let [head, ...tail] = [1, 2, 3, 4];
head // 1
tail // [2, 3, 4]

let [x, y, ...z] = ['a'];
x // "a"
y // undefined
z // []

解構賦值失敗,則變量的值爲undefinedjson

let [foo] = []
let [bar, foo] = [1]

不徹底匹配

let [x, y] = [1, 2, 3];
x // 1
y // 2

let [a, [b], d] = [1, [2, 3], 4];
a // 1
b // 2
d // 4

注:解構賦值的等號右邊必須是可迭代的,非迭代對象將會報錯數組

// 報錯
let [foo] = 1;
let [foo] = false;
let [foo] = NaN;
let [foo] = undefined;
let [foo] = null;
let [foo] = {};

解構賦值容許設定默認值

let [foo = true] = [];
foo // true

let [x, y = 'b'] = ['a']; // x='a', y='b'
let [x, y = 'b'] = ['a', undefined]; // x='a', y='b'

默認對象生效的條件是該對象對應的值必須嚴格等於undefined,不然不會生效函數

let [x = 1] = [undefined];
x // 1

let [x = 1] = [null];
x // null

對象的解構賦值

let { foo, bar } = { foo: "aaa", bar: "bbb" };
foo // "aaa"
bar // "bbb"

變量的名稱必須與對應的屬性值同名才能夠取到正確的值ui

實質上以下:先找到對象的同名屬性,而後賦值給對應的變量prototype

let { foo: baz } = { foo: 'aaa', bar: 'bbb' };
baz // "aaa"

let obj = { first: 'hello', last: 'world' };
let { first: f, last: l } = obj;
f // 'hello'
l // 'world'

note:code

  • 對象解構賦值也能夠嵌套,
  • 也能夠指定默認值,生效條件相同,即屬性值嚴格等於undefined

若是解構模式是嵌套的對象,並且子對象所在的父屬性不存在,那麼將會報錯。對象

// 報錯
let {foo: {bar}} = {baz: 'baz'};

此時foo的值已經爲undefined,而後又取它的子屬性的值天然會報錯ip

避免大括號在首位,以下報錯是由於JavaScript引擎將其認爲是代碼塊

// 錯誤的寫法
let x;
{x} = {x: 1};
// SyntaxError: syntax error

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

字符串的解構賦值

與數組相似

數值和布爾值的解構賦值

首先會將等號右邊的數值或者布爾值轉換爲對象,而後進行解構賦值

let {toString: s} = 123;
s === Number.prototype.toString // true

let {toString: s} = true;
s === Boolean.prototype.toString // true

undefinednull不能轉換爲對象,因此對他們解構賦值會報錯

函數參數的解構賦值

function add([x, y]){
  return x + y;
}

add([1, 2]); // 3

如下代碼是爲函數move的參數指定默認值,而不是爲變量x和y指定默認值

function move({x, y} = { x: 0, y: 0 }) {
  return [x, y];
}

move({x: 3, y: 8}); // [3, 8]
move({x: 3}); // [3, undefined]
move({}); // [undefined, undefined]
move(); // [0, 0]

圓括號問題

不能使用圓括號的狀況

  1. 變量聲明語句
// 所有報錯
let [(a)] = [1];

let {x: (c)} = {};
let ({x: c}) = {};
let {(x: c)} = {};
let {(x): c} = {};

let { o: ({ p: p }) } = { o: { p: 2 } };
  1. 函數參數
// 報錯
function f([(z)]) { return z; }
// 報錯
function f([z,(x)]) { return x; }
  1. 賦值語句的模式
// 所有報錯
({ p: a }) = { p: 42 };
([a]) = [5];

可使用圓括號的狀況

賦值語句的非模式部分

[(b)] = [3]; // 正確
({ p: (d) } = {}); // 正確
[(parseInt.prop)] = [3]; // 正確

用途

  1. 交換變量的值
let x = 1;
let y = 2;

[x, y] = [y, x];
  1. 從函數返回多個值
// 返回一個數組

function example() {
  return [1, 2, 3];
}
let [a, b, c] = example();

// 返回一個對象

function example() {
  return {
    foo: 1,
    bar: 2
  };
}
let { foo, bar } = example();
  1. 函數參數的定義
// 參數是一組有次序的值
function f([x, y, z]) { ... }
f([1, 2, 3]);

// 參數是一組無次序的值
function f({x, y, z}) { ... }
f({z: 3, y: 2, x: 1});
  1. 提取JSON數據
let jsonData = {
  id: 42,
  status: "OK",
  data: [867, 5309]
};

let { id, status, data: number } = jsonData;

console.log(id, status, number);
// 42, "OK", [867, 5309]
  1. 函數參數的默認值
  2. 便利Map結構
const map = new Map();
map.set('first', 'hello');
map.set('second', 'world');

for (let [key, value] of map) {
  console.log(key + " is " + value);
}
// first is hello
// second is world
// 獲取鍵名
for (let [key] of map) {
  // ...
}
// 獲取鍵值
for (let [,value] of map) {
  // ...
}
  1. 輸入模塊的制定方法
const { SourceMapConsumer, SourceNode } = require("source-map");

歡迎訪問個人博客瞭解更多

相關文章
相關標籤/搜索