angularjs 19

AmChartJS API

이 게시물은 AmChartJS의 API 문서를 필요에 의한 것만 옮긴 것입니다. 전체 API 문서를 꼭 확인하세요! [API Document] https://docs.amcharts.com/javascriptcharts [Chart Test] https://live.amcharts.com/new/edit/ [Chart Demo] https://www.amcharts.com/demos/ [추가 Document] http://definitelytyped.org/docs/amcharts--AmCharts/classes/amcharts.amserialchart.html AmSerialChart AmSerialChart is the class you have to use for majority of chart t..

javascript & jQuery 2016.08.09

[AngularJS 2.0] AngularJS 2.0 Tutorial 흐름

목차 프로젝트 분석 흐름이 순서대로 따라가며 보면 편할 듯하다. 프로젝트 필요하신 분은 깃헙 (https://github.com/eunhyekimkeh/angularjs2_tutorial) 또는 댓글주세요! 깃헙에 파일 제대로 올라가있는지 모르겠음앞 내용들의 추가 내용template : 뷰 역할component : 뷰&모델의 상태 관리service : 비즈니스 로직import 하면 directive를 해줌provider : 서비스들 injectpipe : 다국어 처리할 때 도 같은 것, 시스템에가서 설정에 맞게 값을 반환 (@angular/common)browser-pipe.ts : 미리 올려 놓는 것?any ofen : 0.0.0.0 으로 IP 잡기 routes.ts 는 동기방식path : 실제 url..

ANgularJS 2.0+ 2016.08.05

TS2355: A function whose declared type is neither 'void' nor 'any' must return a value.

오류 TS2355: A function whose declared type is neither 'void' nor 'any' must return a value. 오류 상황 에러난 부분들 아무것도 건드린적 없는데 값자기.. 오류 원인 아래 사이트를 참고해 보면return 값의 type이 명확하지 않아서 ts가 js로 변환되면서 생기는 오류인 듯하다. 오류 해결 http://codeinreview.com/184/not-all-code-paths-return-a-value-in-typescript/

오류관리 2016.08.04

TypeScript

TypeScript 2016.09.19 추가 내용 1. Typescript는 JS의 상위집합(superset) 언어.Typescript = ES6(classes, modules) + TYpes + AnnotationsGenerics나 Lambdas를 이용할 수 있다. 2. Javascript의 결점 보완OOP 지원Primitive Type 지원으로 가독성의 장점 3. 프리컴파일 언어 4. Javascript의 미래버전인 Ecma Script 사용 TypeScript Documentation의 BasicTypes 항목을 옮긴 것입니다. 저의 필요에 의한 것만 옮겨왔음으로 직접 보고 확인하시길 추천합니다. Data Type let javascript의 var를 대신함. String multiple line ..

ANgularJS 2.0+ 2016.08.03

[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
반응형