일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- background setttimeout
- getUTCDate
- RTK Query
- Javascript
- codingtest
- notFound()
- CSS
- react hook
- React 고급 안내서
- Programmers
- background setInterval
- React18
- react-helmet
- next13 head
- react
- Babel
- Next13
- Nextjs React 18
- background: url
- React 고급안내서
- context
- background tab
- React API 참고서
- React 공식문서
- hook
- React 18
- Render Props
- Nextjs
- React 18 Nextjs
- 고급안내서
Archives
- Today
- Total
akjfal
Unhandled Rejection(TypeError): Invalid attempt to destructure non-iterable instance 본문
react/react 에러
Unhandled Rejection(TypeError): Invalid attempt to destructure non-iterable instance
akjfal 2019. 11. 23. 11:42
하나의 변수를 다른 방식으로 중복되서 사용할 시 방생하는 에러다
import { testFunction } from './test'
export default function Main(){
const { result1, result2 } = testFunction(); // 1번
testFunction(1); // 2번
return(
...
)
}
const testFunction(num){
useEffect(()=>{
console.log(num);
},[])
}
위와 같이 testFunction은 단순히 인자만 넘기는 함수다.
하지만 result2개를 리턴하는 선언이 하나있고, 인자를 제대로 넘긴 함수 선언이 있다.
이랬을 때 위와 같은 에러가 발생한다.
잘못 선언 한 주석 1번을 지워주게 되면 에러가 사라지게된다.
'react > react 에러' 카테고리의 다른 글
Comments