반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Expo
- 서울
- MSSQL
- 리액트
- react native
- 함수
- 장고
- 맛집
- 수도권 근교
- Excel
- 가상환경
- docker
- 캠핑장
- 시놀로지
- 시놀로지나스
- 나스
- synology
- Django
- 강릉
- 리엑트
- Firebase
- ReactNaitve
- reactnative
- 연곡해변
- SQL
- 캠핑
- 엑셀
- Nas
- react
- apk
Archives
- Today
- Total
목록IT/오류노트 (11)
차근차근 생활 & 코딩
[DOCKER] 도커 로그인 오류
아래와 같은 메세지가 나오면 도커 로그인 명령어를 실행 시키면 해결된다. Unable to find image 'it:latest' locally docker: Error response from daemon: pull access denied for it, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. See 'docker run --help'. $ docker login
IT/오류노트
2021. 9. 15. 11:44
[REACT] INPUT 에러
아래와 같은 에러가 콘솔로그에 발생했다. 에러명 Warning: A component is changing an uncontrolled input of type time to be controlled. Input elements should not switch from uncontrolled to controlled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component. undefined이 되었을때 발생하는 문제라고 한다. 그래서 input 내에 value 값에 공백이 와도 에러가 뜨지 않도록 변경하면 됩니다. 해결방법 value={value|| ''}
IT/오류노트
2021. 9. 6. 09:47