let [a,b,c] = [1,2,3]
let [foo, [[bar], baz]] = [1, [[2], 3]]; //複雜的賦值
foo // 1
bar // 2
baz // 3
let [ , , third] = ["foo", "bar", "baz"]; //自動對應位置匹配
third // "baz"
let [head, ...tail] = [1, 2, 3, 4]; //結合擴展運算符
head // 1
tail // [2, 3, 4]
let [x, y, ...z] = ['a'];
x // "a"
y // undefined
z // []
其實並不僅是數組能夠解構賦值,只要具備Iterator
接口的,均可以實現解構賦值,以下:web
// 使用ES6 yeild 實現 斐波那契數列
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
解構賦值能夠容許指定默認值ajax
let [foo = true] = [];
foo // true
let [x, y = 'b'] = ['a']; // x='a', y='b'
let [x, y = 'b'] = ['a', undefined]; // x='a', y='b'
注意,ES6 內部使用嚴格相等運算符(===),判斷一個位置是否有值。因此,只有當一個數組成員嚴格等於undefined,默認值纔會生效。json
let [x = 1] = [undefined];
x // 1
let [x = 1] = [null];
x // null
上述第二個未生效的緣由是: null != undefiend
數組
另外注意,默認值表達式爲惰性求值,以下:async
function f() {
console.log('若被默認賦值,則執行f函數並輸出該行文字');
}
let [x = f()] = [1];
//控制檯無輸出
在這種狀況下,由於一開始x
就能取值,因此f
根本就不會執行。編輯器
另外 默認值能夠引用解構賦值的其餘變量,但該變量必須已經被聲明。函數
注意ui
對於對象的解構賦值,等號的右側 必須有和左側對應的key-value
形式url
以下圖所示spa
![image-20200707144027174](/Users/chenlei/Library/Application Support/typora-user-images/image-20200707144027174.png)
對方法的賦值 同理
![image-20200707144100039](/Users/chenlei/Library/Application Support/typora-user-images/image-20200707144100039.png)
最基礎的對象解構
let { foo, bar } = { foo: 'aaa', bar: 'bbb' };
foo // "aaa"
bar // "bbb"
數組的元素是按次序排列的,變量的取值由它的位置決定;而對象的屬性沒有次序,變量必須與屬性同名,才能取到正確的值。
同時,對象解構 也能夠很方便的將現有的方法進行賦值。
// 例一
let { log, sin, cos } = Math; // 將Math方法賦值給log sin cos 三個變量
// 例二
const { log } = console;
log('hello') // hello
特殊狀況,若是須要變量名和屬性名不一致的狀況,能夠按照以下方式寫。
let { foo: baz } = { foo: 'aaa', bar: 'bbb' }; // 注意:此時foo是匹配模式,baz纔是變量,真正被賦值的是baz
baz // "aaa"
let obj = { first: 'hello', last: 'world' };
let { first: f, last: l } = obj;
f // 'hello'
l // 'world'
另外,複雜的嵌套對象也能夠經過解構來進行實現,以下
let obj = {
p: [
'Hello',
{ y: 'World' }
]
};
let { p: [x, { y }] } = obj; // 此種狀況下p不會做爲變量被賦值
x // "Hello"
y // "World"
let {p,p: [x,{y}]} = obj
x // "Hello"
y // "World"
p // ["Hello,{y: "World"}"]
一個複雜的 嵌套賦值的例子
let obj = {};
let arr = [];
({ foo: obj.prop, bar: arr[0] } = { foo: 123, bar: true });
obj // {prop:123}
arr // [true]
另外,在進行對象的解構賦值時候,是能夠取到繼承的屬性的。
const obj1 = {};
const obj2 = { foo: 'bar' };
Object.setPrototypeOf(obj1, obj2);
const { foo } = obj1;
foo // "bar"
var {x = 3} = {};
x // 3
var {x, y = 5} = {x: 1};
x // 1
y // 5
var {x: y = 3} = {};
y // 3
var {x: y = 3} = {x: 5};
y // 5
var { message: msg = 'Something went wrong' } = {};
msg // "Something went wrong"
默認值生效的條件爲: 對象的屬性值嚴格等於(===)undefind
var {x = 3} = {x: undefined};
x // 3
var {x = 3} = {x: null};
x // null
若是要將一個已經聲明的變量用於解構賦值,必須很是當心。
// 錯誤的寫法
let x;
{x} = {x: 1};
// SyntaxError: syntax error
上面代碼的寫法會報錯,由於 JavaScript 引擎會將{x}
理解成一個代碼塊,從而發生語法錯誤。只有不將大括號寫在行首,避免 JavaScript 將其解釋爲代碼塊,才能解決這個問題。
// 正確的寫法
let x;
({x} = {x: 1});
上面代碼將整個解構賦值語句,放在一個圓括號裏面,就能夠正確執行。關於圓括號與解構賦值的關係,參見下文。
(2)解構賦值容許等號左邊的模式之中,不放置任何變量名。所以,能夠寫出很是古怪的賦值表達式。
({} = [true, false]);
({} = 'abc');
({} = []);
上面的表達式雖然毫無心義,可是語法是合法的,能夠執行。
(3)因爲數組本質是特殊的對象,所以能夠對數組進行對象屬性的解構。
let arr = [1, 2, 3];
let {0 : first, [arr.length - 1] : last} = arr;
first // 1
last // 3
上面代碼對數組進行對象解構。數組arr
的0
鍵對應的值是1
,[arr.length - 1]
就是2
鍵,對應的值是3
。方括號這種寫法,屬於「屬性名錶達式」(參見《對象的擴展》一章)。
字符串也能夠解構賦值。這是由於此時,字符串被轉換成了一個相似數組的對象。
const [a, b, c, d, e] = 'hello';
a // "h"
b // "e"
c // "l"
d // "l"
e // "o"
相似數組的對象都有一個length
屬性,所以還能夠對這個屬性解構賦值。
let {length : len} = 'hello';
len // 5
函數的參數也能夠使用解構賦值。有點相似與TS中的提早聲明。
function add([x, y]){
return x + y;
}
add([1, 2]); // 3
上面代碼中,函數add
的參數表面上是一個數組,但在傳入參數的那一刻,數組參數就被解構成變量x
和y
。對於函數內部的代碼來講,它們能感覺到的參數就是x
和y
。
下面是另外一個例子。
[[1, 2], [3, 4]].map(([a, b]) => a + b);
// [ 3, 7 ]
函數參數的解構也能夠使用默認值。
function move({x = 0, y = 0} = {}) {
return [x, y];
}
move({x: 3, y: 8}); // [3, 8]
move({x: 3}); // [3, 0]
move({}); // [0, 0]
move(); // [0, 0]
上面代碼中,函數move
的參數是一個對象,經過對這個對象進行解構,獲得變量x
和y
的值。若是解構失敗,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]
上面代碼是爲函數move
的參數指定默認值,而不是爲變量x
和y
指定默認值,因此會獲得與前一種寫法不一樣的結果。
undefined
就會觸發函數參數的默認值。
[1, undefined, 3].map((x = 'yes') => x);
// [ 1, 'yes', 3 ]
// 所有報錯
let [(a)] = [1];
let {x: (c)} = {};
let ({x: c}) = {};
let {(x: c)} = {};
let {(x): c} = {};
let { o: ({ p: p }) } = { o: { p: 2 } };
// 報錯
function f([(z)]) { return z; }
// 報錯
function f([z,(x)]) { return x; }
// 所有報錯
({ p: a }) = { p: 42 };
([a]) = [5];
上面代碼將整個模式放在圓括號之中,致使報錯。
// 報錯
[({ p: a }), { x: c }] = [{}, {}];
上面代碼將一部分模式放在圓括號之中,致使報錯。
let a = 1
let b = 2
[a,b] = [b,a] // 經過解構賦值實現對a b的值進行交換
// 返回一個數組
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});
let jsonData = {
id: 42,
status: "OK",
data: [867, 5309]
};
let { id, status, data: number } = jsonData;
console.log(id, status, number);
// 42, "OK", [867, 5309]
jQuery.ajax = function (
url,
{
async = true,
beforeSend = function () {},
cache = true,
complete = function () {},
crossDomain = false,
global = true,
// ... more config
} = {}
)
{
// ... 函數具體的執行內容 do stuff
};
// 如上 在調用ajax的時候 如無傳入則使用默認的async beforeSend 等屬性的默認值
const map = new Map();
map.set('first','hello');
map.set('second','world')
for(let [key,val] of map)
{
console.log(key + 'is' + value)
}
// first is hello
// second is world
只獲取鍵名
for (let [key] of map) {
console.log(key)
}
只獲取值
for (let [,val] of map) { }