AngularJs 개발에 중요한 부분중에 하나가 watch count를 관리하는 것 입니다. watch카운트 수만 확인을 잘해도 의도치 않게 작동하는 부분을 방지할 수 있습니다. 크롬으로 개발할 경우 플러그인을 추천합니다. numwatchershttps://chrome.google.com/webstore/detail/numwatchers/pfobbidciepicjagbpckejfckhidegbl 실제 사용 화면입니다. watch count가 1인것을 확인 할 수 있습니다. 그리고 한가지 더 선언되어있지 않은 변수를 사용 할 경우 one-way-binding 해도 watch count 수가 증가합니다. 아래 스크린샷을 보면 변수로 선언되지 않은 word1이라는 변수명을 one way binidng을 하였지..
repository를 미리 생성해 놓고 작업 디렉토리로 이동 >> git init>> git add .>> git commit -m "first commit">> git remote add origin .git>> git push origin master >> git id/password 입력
jQuery를 이용하여 아이콘을 누르면 테이블을 접고 펴는 기능 구현. 소스는 간단하니 codepen에서 소스 참조하세요. See the Pen Table Tr tag toggle / jquery by homin ahn (@beans9) on CodePen.
bootstrap에서 기본적으로 제공하는 테이블에 경우 글씨 크기나 줄간격등이 마음에 들지 않아 css를 이용하여 변경codepen.io에서 확인가능 See the Pen bootstrap table css by homin ahn (@beans9) on CodePen.
- bootstraphttp://getbootstrap.com - semantic-uihttp://semantic-ui.com - foundationhttp://foundation.zurb.com - pure csshttp://purecss.io
기본명령어 - checkout>> git checkout - file add>> git add * >> git add test.java // 특정파일만 등록할 때 - commit>> git commit -m "commit message" - push>> git push origin master