JavaScript 解构赋值

x33g5p2x  于2022-05-06 转载在 Java  
字(3.3k)|赞(0)|评价(0)|浏览(572)

在本教程中,您将借助示例了解 JavaScript 解构赋值。

JavaScript 解构

ES6 中引入的解构赋值可以轻松地将数组值和对象属性分配给不同的变量。例如,
    在 ES6 之前:

  1. // assigning object attributes to variables
  2. const person = {
  3. name: 'Sara',
  4. age: 25,
  5. gender: 'female'
  6. }
  7. let name = person.name;
  8. let age = person.age;
  9. let gender = person.gender;
  10. console.log(name); // Sara
  11. console.log(age); // 25
  12. console.log(gender); // female

来自 ES6:

  1. // assigning object attributes to variables
  2. const person = {
  3. name: 'Sara',
  4. age: 25,
  5. gender: 'female'
  6. }
  7. // destructuring assignment
  8. let { name, age, gender } = person;
  9. console.log(name); // Sara
  10. console.log(age); // 25
  11. console.log(gender); // female

注意:名称的顺序在对象解构中无关紧要。
    例如,您可以将上述程序编写为:

  1. let { age, gender, name } = person;
  2. console.log(name); // Sara

注意:在解构对象时,应该使用与相应对象键相同的变量名称。
    例如,

  1. let {name1, age, gender} = person;
  2. console.log(name1); // undefined

如果要为对象键分配不同的变量名称,可以使用:

  1. const person = {
  2. name: 'Sara',
  3. age: 25,
  4. gender: 'female'
  5. }
  6. // destructuring assignment
  7. // using different variable names
  8. let { name: name1, age: age1, gender: gender1 } = person;
  9. console.log(name1); // Sara
  10. console.log(age1); // 25
  11. console.log(gender1); // female
数组解构

您也可以用类似的方式执行数组的解构。例如,

  1. const arrValue = ['one', 'two', 'three'];
  2. // destructuring assignment in arrays
  3. const [x, y, z] = arrValue;
  4. console.log(x); // one
  5. console.log(y); // two
  6. console.log(z); // three
分配默认值

您可以在使用解构时为变量指定默认值。例如,

  1. let arrValue = [10];
  2. // assigning default value 5 and 7
  3. let [x = 5, y = 7] = arrValue;
  4. console.log(x); // 10
  5. console.log(y); // 7

在上述程序中,arrValue 只有一个元素。因此,

  • x 变量将是 10
  • y 变量采用默认值 7

在对象解构中,可以以类似的方式传递默认值。例如,

  1. const person = {
  2. name: 'Jack',
  3. }
  4. // assign default value 26 to age if undefined
  5. const { name, age = 26} = person;
  6. console.log(name); // Jack
  7. console.log(age); // 26
交换变量

在此示例中,使用解构赋值语法交换了两个变量。

  1. // program to swap variables
  2. let x = 4;
  3. let y = 7;
  4. // swapping variables
  5. [x, y] = [y, x];
  6. console.log(x); // 7
  7. console.log(y); // 4
跳过项

您可以跳过数组中不需要的项,而无需将它们分配给局部变量。例如,

  1. const arrValue = ['one', 'two', 'three'];
  2. // destructuring assignment in arrays
  3. const [x, , z] = arrValue;
  4. console.log(x); // one
  5. console.log(z); // three

在上面的程序中,使用逗号分隔符 , 省略了第二个元素。

将剩余元素分配给单个变量

您可以使用扩展语法将数组的剩余元素分配给变量…。例如,

  1. const arrValue = ['one', 'two', 'three', 'four'];
  2. // destructuring assignment in arrays
  3. // assigning remaining elements to y
  4. const [x, ...y] = arrValue;
  5. console.log(x); // one
  6. console.log(y); // ["two", "three", "four"]

这里,one 被分配给 x 变量。其余的数组元素被分配给 y 变量。
    您还可以将对象其余的属性指定给单个变量。例如,

  1. const person = {
  2. name: 'Sara',
  3. age: 25,
  4. gender: 'female'
  5. }
  6. // destructuring assignment
  7. // assigning remaining properties to rest
  8. let { name, ...rest } = person;
  9. console.log(name); // Sara
  10. console.log(rest); // {age: 25, gender: "female"}

注意:具有扩展语法的变量不能有尾随逗号,。您可以将这个rest元素(带有扩展语法的变量)作为最后一个变量。
    例如,

  1. const arrValue = ['one', 'two', 'three', 'four'];
  2. // throws an error
  3. const [ ...x, y] = arrValue;
  4. console.log(x); // eror
嵌套解构赋值

您可以对数组元素执行嵌套解构。例如,

  1. // nested array elements
  2. const arrValue = ['one', ['two', 'three']];
  3. // nested destructuring assignment in arrays
  4. const [x, [y, z]] = arrValue;
  5. console.log(x); // one
  6. console.log(y); // two
  7. console.log(z); // three

在这里,变量 y 和 z 被指定为嵌套元素 two 和 three。
    为了执行嵌套的解构赋值,必须将变量包含在数组结构中(通过将变量包含在 [] 中)。
    您还可以对对象属性执行嵌套解构。例如,

  1. const person = {
  2. name: 'Jack',
  3. age: 26,
  4. hobbies: {
  5. read: true,
  6. playGame: true
  7. }
  8. }
  9. // nested destructuring
  10. const {name, hobbies: {read, playGame}} = person;
  11. console.log(name); // Jack
  12. console.log(read); // true
  13. console.log(playGame); // true

为了对对象执行嵌套的解构赋值,必须将变量封装在对象结构中(通过在 { } 内封装)。
    注意:解构赋值特性是在ES6中引入的。一些浏览器可能不支持使用解构赋值。访问Javascript 解构支持以了解更多信息。

上一教程 :JS Set                                          下一教程 :JS Classes

参考文档

[1] Parewa Labs Pvt. Ltd. (2022, January 1). Getting Started With JavaScript, from Parewa Labs Pvt. Ltd: https://www.programiz.com/javascript/destructuring-assignment

相关文章

最新文章

更多