front 15

[AngularJS 2.0] App Lifecycle

링크에서 내용 찾아보세요.https://mayajuni.github.io/2016/10/21/angular2-lifecycle-hooks/ ngOnInit angular가 data bound input property 초기화한 후 directive/component 초기화ngOnInit is invoked after the component is constructed and is the best place to initialize property values.constructor와 비슷하지만 시점의 차이가 있다. 참고Timing : after the first ngOnChanges.ngOnChangesangular 가 data bound input property를 설정 한 후 respond, 즉 inp..

ANgularJS 2.0+ 2016.08.03

[AngularJS 2.0] Angular 용어 정리

https://angular.io/docs/ts/latest/guide/architecture.html 를 참고하였습니다.1. Module 이 블로그에 정리가 잘되어있으므로 패스http://dalkomit.com/95 2016.07.29 추가 내용 @angular/core 여러 모듈을 하나로 묶어주는 통합모듈, 소스를 실제로 보면 여러 모듈을 다시 export한다.여러 모듈을 묶어서 export하는 모듈을 barrel이라고 한다. 2016.09.19 추가 내용Angular는 많은 모듈로 이루어져있다.Module은 다른 module에 의해 import 될 수 있다.import 시 핵심 모듈은 @를 붙인다. @angular/core, @angular/commonModule은 export할 때 여러 자료형을 ..

ANgularJS 2.0+ 2016.07.28

[AngularJS 2.0] 개요 & 기초 추천 페이지

Angular.io 에서 제공하는 튜토리얼을 정리한 것입니다. 사진 클릭시 튜토리얼로 이동목차[AngularJS 2.0] 개요 & 기초 추천 페이지[AngularJS 2.0] AngularJS 2.0 용어 개요 Angular 2 는 우리가 HTML이나 Javascript뿐만아니라 다른 언어(Dart 나 TypeScript 같은)로 클라이언트 어플리케이션을 만드는걸 쉽게 도와주는 프레임워크이다. Angular으로 Application을 생성하는 과정 ● Angular로 작성된 HTML Template 구성● Template을 관리해줄 Component 작성● Service에 어플리케이션 로직 추가● Bootstrapper에 컴포넌트 전달 앵귤러는 브라우저에 어플리케이션 내용을 보여주고 우리가 제공하는 지침..

ANgularJS 2.0+ 2016.07.20

[CSS] Position

CSS에서 Position 위치를 지정할 수 있는 4가지 방법 기본적으로 왼쪽에서 오른쪽 / 위에서 아래의 순서로 배치됨 1. float : left,rightfloat은 위로 띄우는것 그럼 그 다음에 있던 것들이 치고 올라오겠지자기가 출력될 자리에서 공중에 뜨는 것 div 경우 float를 사용할때width,height를 지정하지 않으면 content의 내용에 따라 크기가 나타나게됨 2. position:absolute 조상(부모x)을 기준으로 상대적인 위치를 지정함조상 : absolute or relative조상중에 absolute or relative가 없으면 body를 기준 3. position:fixed웹 브라우저 client영역스크롤 상관없이 고정 위치 4. position:relative1,..

javascript & jQuery 2016.05.03
반응형