Destructuring #React 빠른 노트.
6385 단어 nodebeginnersreactjavascript
케이크 가게에서 원하는 과자만 고르라는 뜻이다.
다음은 이를 기억하는 예입니다.
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 을 확인할 수 있습니다. 그러나 모든 객체를 가능한 한 단순하게 만드십시오.
Reference
이 문제에 관하여(Destructuring #React 빠른 노트.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ajaybaraiya6/destructuring-react-quick-notes-429e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)