본문 바로가기

전체 글307

[Angular] 의존성 주입 심화 학습 키워드 모음 ★ 키워드 ★ Injector DI patterns Hierarchical Inectors / Hierarchical DI / Injector hierarchies Injector tree - resolution & resolution modifiers(@Self, @Optional, @SkipSelf, @Host) Optional Dependency Service Mediator Pattern Tree-shake ■ Dependency providers (링크), (링크2) Class Provider (useClass - 대채 또는 override, 덮어쓴다) Alias Provider (useExisting - 같은 서비스 객체를 또 다른 이름으로 참조, 필요한 API만 빼서 사용(abstract) .. 2023. 6. 16.
[Angular] InjectionToken (퍼옴) Configure your Angular apps with an injection token Configure your Angular apps with an injection token You will learn how to use InjectionToken to configure your shared services and components. medium.com Value Provider 값 프로바이더는 클래스의 인스턴스가 아닌 문자열이나 객체 리터럴과 같은 값을 의존성 주입하기 위한 설정을 등록한다 2023. 6. 16.
Angular Material UI tutorials - Mosh https://youtu.be/wPT3K3w6JtU 2023. 5. 18.
날짜 포맷 변경 "YY-MM-DD HH:MM:SS" function getFormatDate(date){ var year = date.getFullYear(); var month = (1 + date.getMonth()); month = month > 10 ? month : '0' + month; // 10이 넘지 않으면 앞에 0을 붙인다 var day = date.getDate(); day = day > 10 ? day : '0' + day; // 10이 넘지 않으면 앞에 0을 붙인다 var hours = date.getHours(); hours = hours > 10 ? hours : '0' + hours; // 10이 넘지 않으면 앞에 0을 붙인다 var minutes = date.getMinutes(); minutes = minutes > 10 ?.. 2023. 5. 18.
svg code editor https://editsvgcode.com/ svg 파일을 넣으면 코드를 볼 수 있음. 수정도 가능. 2023. 5. 16.
[Angular] ng-content + select 소스코드를 보던 중... 와 같은 코드가 있었는데, ng-container에 속성값으로 "fuse-"가 있는 것을 볼 수 있다. 공식문서를 보니, 는 "콘텐츠를 투영할 위치를 지정한다." content projection (참고링크) fuse-vertical-navigation 컴포넌트 안에 있는 ng-container 속성값 "fuse-"는 라벨이라고 볼 수 있다. 그리고 ng-content는 select에 그 라벨을 넣어줌으로써 ng-content는 ng-container 안에 들어갈 수 있게 된다. 2023. 5. 10.