[CSS] 만족도조사 + 라디오버튼 커스텀 기획안 보자마자 justify-content:space-around 이게 떠올라서 착착 만들어졌다. See the Pen Untitled by Nay Kim (@nay-kim) on CodePen. 더보기 radio check img color #019de6 더보기 postman request 요청 전 전역변수 저장하기 포스트맨에서 request를 send 하기 전 참조해야하는 변수가 있을때 미리 저장할 수 있는 방법이 있다. 1. 콜렉션 우클릭 > Edit 2. Pre-request Scripts 탭 난 주로 날짜 별 조회해오는 항목들이 많아서 default 날짜 값을 미리 전역변수로 저장해두었다. let date = new Date(); let thisYear = date.getFullYear(); let thisMonth = date.getMonth() + 1; let addZero = function(num){ if (num < 10){ num = "0"+num; } return num; }; let thisMonthFirstDay = addZero(new Date(thisYear,thisMonth - 1,1)... 더보기 이전 1 2 3 4 ··· 39 다음