분류 전체보기
-
#6 자바스크립트 타입?JavaScript 2019. 6. 17. 01:18
기본 타입 1. Number - 실수 및 부동소수점 64bit(double) 2. String - 문자열 3. Boolean - True, False 4. undefined - 변수에 값이 할당x 5. null - 개발자가 의도적으로 할당하는 값. (typeof 값이 Object로 반환. 따라서 ===로 확인해야한다.)123var nullCheck = null;console.log(typeof nullCheck === null); // falseconsole.log(nullCheck === null); // truecs 참조 타입(객체 타입) 1. Object 2. Array - 배열도 객체로 취금 3. Function - 함수도 객체로 취급 NaN(Not a Number) - 수치 연산을 해서 정상적인..
-
#5 div안에 div넣기CSS 2019. 6. 17. 01:05
코딩하다보면 div태그 안에 div태그를 쓰는 경우가 종종 발생한다. // 1. width, height 각각 100px의 div를 생성했다. 123456789101112131415 .main{ background-color: yellow; } .main_common{ width: 100px; height: 100px; border: 1px solid blue; } test1 test2 test3Colored by Color Scriptercs // 2. div는 기본적으로 Block태그 요소이다.// 따라서 display : inline; 선언을 해주어 다음그림과 같이 한 줄로 표시되게 한다. 12345678910111213141516 .main{ background-color: yellow; } .m..
-
#4 Am Chart 사용Java & Spring 2019. 6. 14. 01:14
Am Chart 사용처음 사용해보는 차트여서 그런지 몰라도 적용시키는게 조금 헷갈렸지만열심히 구글링하면서 해결! // Controller 1234567891011121314151617181920212223// 실내 모니터링에서 차트@ResponseBody@RequestMapping(value = "/insideChart", method = RequestMethod.GET)public JSONArray insideChart(Model model, HttpServletRequest request, HttpSession session) { String member_id = ((MemberVO) request.getSession().getAttribute("user")).getMember_id(); String..
-
#2 ESP-01 와이파이 모듈을 이용한 미세먼지 측정Arduino 2019. 6. 12. 00:06
#2 ESP-01 와이파이 모듈을 이용한 미세먼지 측정 와이파이(클라이언트) -> Spring(서버) 자세한 배선은 구글에 잘 나와있는 관계로.. 생략.. 미세먼지 센서는 GP2Y1010AU0F 사용했습니다. 참고 링크: https://m.blog.naver.com/PostView.nhn?blogId=darknisia&logNo=221222455928&proxyReferer=https%3A%2F%2Fwww.google.com%2F // 아두이노에서 받은 미세먼지 측정값 @RequestMapping(value = "/dustData", method = RequestMethod.POST, produces = {"application/json"}) public @ResponseBody Map dustData(..