Destructuring #React 빠른 노트.

기본 의미를 기억하십시오.

케이크 가게에서 원하는 과자만 고르라는 뜻이다.

다음은 이를 기억하는 예입니다.

const cakeVarieties = ['Chocolate','KitKat','Mango', 'Brownie'];

const [myChoise1, myChoise2, ...rest] = cakeVarieties;

console.log(myChoise1); //Chocolate
console.log(myChoise2); //KitKat
console.log(rest); //['Mango','Brownie'] --Remember rest means other things left and which is only be declared at last position.

//Below is for #React.js

const premiumCakeVarieties = {sameNameHere1: 'Chocolate', sameNameHere2:'KitKat', sameNameHere3:{fruitCakes :['Mango','Pineaple']}, 
 sameNameHere4:'Brownie'};

const {sameNameHere1, sameNameHere2, sameNameHere4, sameNameHere3 : {fruitCakes:[cake1, cake2]}} = premiumCakeVarieties; //Notice: We have same variable name no matter in which order they are they will access array property where matching name of itself.

console.log(sameNameHere1); //Chocolate
console.log(sameNameHere2); //KitKat
console.log(sameNameHere4); //Brownie
console.log(sameNameHere3); //['Mango','Pineaple']
console.log(cake1); //Mango //this follows order here as we did not have key for it
console.log(cake2); //Pineaple //this follows order here as we did not have key for it


메모
  • 배열로 작업하는 동안 배열 왼쪽을 정의하여 파괴할 수 있습니다.

  • const [a, b, ...rest] = [1,2,3,4]; //here an array both sides.
    


  • 객체로 작업하는 동안 대괄호, 즉 {}가 필요합니다.

  • const {a, b, ...rest} = obj; //here {} left side.
    


    문제를 해결하려면 이 기본 사항만 필요하지만 가장 자세한 설명이 있고 더 복잡한 객체를 파괴할 때 사용할 수 있는 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment 을 확인할 수 있습니다. 그러나 모든 객체를 가능한 한 단순하게 만드십시오.

    좋은 웹페이지 즐겨찾기