[JS]關於解構賦值(Destructuring Assignment)
前言
剛開始接觸JS的時候,常常會很困惑解構賦值的寫法,這篇會來整理關於解構賦值的用法來幫助釐清觀念。
解構賦值 (Destructuring assignment)
解構賦值 (Destructuring assignment) 語法是一種 JavaScript ES6的 運算式,可以把陣列或物件中的資料提取出來成為獨立變數。新語法讓程式變得簡短提高閱讀性。
在英文官方文件中提到使用方式如同鏡子般,對映出陣列或物件字面的結構。但沒有像鏡子左右相反。
- The destructuring assignment syntax is a JavaScript expression that makes it possible to extract data from arrays or objects using a syntax that mirrors the construction of array and object literals.
陣列解構賦值
1 | let a, b, rest; |
物件解構賦值
1 | const {a, b, ...rest} = {a: 10, b: 20, c: 30, d: 40}; |
一般常見的物件寫法
1 | const name = {first: 'Fred', last: 'Waterford'}; |
- 物件的解構賦值屬性名稱必須相互對應才能夠取得到值。
上述用法算是簡寫,實際上寫法為 {屬性名稱:變數}
1 | const name = { |
混用物件或陣列解構賦值
1 | const {a: x, b: [, y]} = {a: 5, b: [10, 100]} |
解構賦值時給定預設值
1 | let [a, b, c = 4, d = 'Hello'] = [1, 2, 3]; |
搭配函式的傳入參數使用
函式的參數使用解構賦值的方式,則能夠自訂變數名稱、順序、預設值
1 | const user = { |
帶入預設值
1 | function func({a = 'Peter', b}) { |
框架的解構賦值
React和Vue3都有類似的用法
1 | const { ref, reactive } = Vue; |
1 | var React = require('react-native') |
參考資料
[JS]關於解構賦值(Destructuring Assignment)
https://kaiyuncheng.github.io/2020/12/10/destructuringAssignment/