什么是解构赋值及其用途?

What is destructuring assignment and its uses?

我一直在阅读有关 Destructuring assignment 在 ES6 中引入的内容。

此语法的目的是什么,为什么引入它,以及如何在实践中使用它的一些示例?

What is destructuring assignment ?

解构赋值语法是一个JavaScript表达式,可以将数组中的值或对象中的属性解包到不同的变量中.

- MDN

Advantages

A. 使代码简洁易读。

B.我们可以很容易地避免重复破坏表达式。

Some use cases

1.要从对象中获取变量值,array

let obj = { 'a': 1,'b': {'b1': '1.1'}}
let {a,b,b:{b1}} = obj
console.log('a--> ' + a, '\nb--> ', b, '\nb1---> ', b1)

let obj2 = { foo: 'foo' };
let { foo: newVarName } = obj2;
console.log(newVarName);

let arr = [1, 2, 3, 4, 5]
let [first, second, ...rest] = arr
console.log(first, '\n', second, '\n', rest)


// Nested extraction is possible too:
let obj3 = { foo: { bar: 'bar' } };
let { foo: { bar } } = obj3;
console.log(bar);

2。将一个数组在任意位置与另一个数组组合。

let arr = [2,3,4,5]
let newArr = [0,1,...arr,6,7]
console.log(newArr)

3.仅更改对象中所需的 属性

let arr = [{a:1, b:2, c:3},{a:4, b:5, c:6},{a:7, b:8, c:9}]

let op = arr.map( ( {a,...rest}, index) => ({...rest,a:index+10}))

console.log(op)

4.创建对象的浅表副本

let obj = {a:1,b:2,c:3}
let newObj = {...obj}
newObj.a = 'new Obj a'

console.log('Original Object', obj)
console.log('Shallow copied Object', newObj)

5.将参数中的值提取到独立变量中

// Object destructuring:
const fn = ({ prop }) => {
  console.log(prop);
};
fn({ prop: 'foo' });


console.log('------------------');


// Array destructuring:
const fn2 = ([item1, item2]) => {
  console.log(item1);
  console.log(item2);
};
fn2(['bar', 'baz']);


console.log('------------------');


// Assigning default values to destructured properties:

const fn3 = ({ foo="defaultFooVal", bar }) => {
  console.log(foo, bar);
};
fn3({ bar: 'bar' });

6.从对象

获取动态键值

let obj = {a:1,b:2,c:3}
let key = 'c'
let {[key]:value} = obj

console.log(value)

7.从具有一些默认值的其他对象构建对象

let obj = {a:1,b:2,c:3}
let newObj = (({d=4,...rest} = obj), {d,...rest})
console.log(newObj)

8.交换值

const b = [1, 2, 3, 4];
[b[0], b[2]] = [b[2], b[0]]; // swap index 0 and 2

console.log(b);

9.获取对象的子集

  • 9.1subset of an object:

    const obj = {a:1, b:2, c:3},
    subset = (({a, c}) => ({a, c}))(obj); // credit to Ivan N for this function
    
    console.log(subset);
    

  • 9.2 得到一个subset of an object using comma operator and destructuring:

    const object = { a: 5, b: 6, c: 7  };
    const picked = ({a,c}=object, {a,c})
    
    console.log(picked); // { a: 5, c: 7 }
    

10。数组到对象的转换:

const arr = ["2019", "09", "02"],
date = (([year, day, month]) => ({year, month, day}))(arr);

console.log(date);

11。 (阅读此答案了解更多信息)

function someName(element, input,settings={i:"#1d252c", i2:"#fff",...input}){
    console.log(settings.i)
    console.log(settings.i2)
}

someName('hello', {i:'#123'})
someName('hello', {i2:'#123'})

12。从数组、函数名称、参数数量等中获取 length 等属性

let arr = [1,2,3,4,5];

let {length} = arr;

console.log(length);

let func = function dummyFunc(a,b,c) {
  return 'A B and C';
}

let {name, length:funcLen} = func;

console.log(name, funcLen);

好像你有的东西可以用相同的变量名提取出来

解构赋值是一个 JavaScript 表达式,可以将数组中的值或对象中的属性解压缩到不同的变量中。让我们使用解构赋值

从数组中获取月份值
var [one, two, three] = ['orange', 'mango', 'banana'];

console.log(one); // "orange"
console.log(two); // "mango"
console.log(three); // "banana"

并且您可以使用解构赋值获取对象的用户属性,

var {name, age} = {name: 'John', age: 32};

console.log(name); // John
console.log(age); // 32

Javascript的De-structured assignment可能是受Perl语言的启发

这通过避免编写 getter 方法或包装函数来促进重用。

我发现特别有用的一个最好的例子是重用 return 比所需数据多的函数。

如果有一个函数 return 是一个列表或数组或 json,而我们只对列表或数组或 json 的第一项感兴趣, 那么我们可以简单地使用解构赋值而不是编写新的包装函数来提取感兴趣的数据项。