일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- ISO25000
- 구글 클라우드 플랫폼
- 도커
- 품질 표준
- 네이버 클라우드 플랫폼
- RxJS
- casperJS
- phantomjs
- cyber.shinhan
- 페이지구분
- ISO9126
- Cheerio
- Nexus
- npm repository
- 크롤링
- ISO25010
- pylint
- angular2
- 소프트웨어
- 신한대학교
- angular
- docker
- vscode
- SW
- 서버
- angular-cli
- nodejs
- angular2 google analytics
- REQUEST
- 품질
- Today
- Total
목록angular (2)
나를 위한 기록들
스크롤 이벤트 값 가져오기 import { Component, OnInit, HostListener } from '@angular/core'; @Component({ selector: 'app-scroll', templateUrl: './scroll.component.html', styleUrls: ['./scroll.component.css']})export class ScrollComponent implements OnInit { @HostListener('window:scroll', ['$event']) onScrollEvent($event){ console.log($event); // 스크롤 정보 console.log("scrolling"); } constructor() { } ngOnInit()..
Rxjs를 이용해서 데이터를 공유하는 방법 서비스// shared-service.ts import { Observable } from 'rxjs/Observable';import { Injectable } from '@angular/core';import { Subject } from 'rxjs/Subject'; @Injectable()export class SharedService { private emitChangeSource = new Subject(); changeEmitted$ = this.emitChangeSource.asObservable(); emitChange(change: any) { this.emitChangeSource.next(change); }} 데이터 보내기import { Co..