전체 글 512

[ MYSQL ] DATETIME Null값 체크

증상 DATETIME 수정이 일어난 경우 0000-00-00 이 기본 값으로 입력됨 해결 UNIXTIME 기준으로 검증한다 IF(UNIX_TIMESTAMP(O.delivery_complete_time) = 0,'미입력', O.delivery_complete_time) AS delivery_complete_time 관련링크 https://stackoverflow.com/questions/559590/selecting-empty-mysql-datetime-fields Selecting empty mysql datetime fields Is there a better way to select empty datetime fields than this? SELECT * FROM `table` WHERE `date..

DB/MYSQL 라넌.B 2021.10.21

[ REACT ] 메뉴 활성화 적용 NavLink

증상 state를 사용해서 활성메뉴를 검증하는 경우 페이지 새로고침하였을때 상태값이 초기화 되는 이슈 발견 초기 렌더시에 URL을 파싱해서 활성을 처리하는 경우 페이지 이동시 상태가 변경되지 않는 이슈 발견 해결책 NavLink 사용 import { NavLink } from 'react-router-dom'; about // Or specifing active style about // If you use deep routes and you need an exact match about 관련링크 https://stackoverflow.com/questions/42297728/react-js-implement-menu-highlight-active-link/54235985

FE/React 거북 2021.10.20

[ AWS ] Process default has been unhealthy for 20 minutes (Target.ResponseCodeMismatch)

https://lhy.kr/elb-healthcheck-for-django Elastic Beanstalk의 Django 애플리케이션에서 발생하는 ELB Health check 4xx에러 해결 최근 Django프로젝트를 배포할 때는 항상 Docker와 AWS Elastic Beanstalk을 사용하고 있다. 이번 포스팅에서는 Elastic Beanstalk에 Django애플리케이션을 배포할 때, Elastic Load Balancing서비스에서 Health check가 실 lhy.kr AWS elastic beanstalk 100.0 % of the requests are erroring with HTTP 4xx AWS elastic beanstalk 100.0 % of the requests are e..

BE/AWS HEON.D 2021.10.19

[ Angular ] Angular Starter

트위터, 유튜브, 블로그 https://twitter.com/angular Angular(@angular) 님 | 트위터 @angular 님 언뮤트하기 @angular 님 뮤트하기 팔로우 @angular 님 팔로우하기 팔로잉 @angular 님 팔로우 중 언팔로우 @angular 님 언팔로우하기 차단됨 @angular 님이 차단됨 차단 해제 @angular님 차단 해제 대 twitter.com https://www.youtube.com/angular Angular Angular an application development platform that lets you extend HTML vocabulary for your application. The resulting environment is extr..

FE/Angular HEON.D 2021.10.16