Javascript/AngularJS
-
(초보) Ionic v2 ( TypeScript ) 에서 http 요청으로 돌아온 json 값 필터시키는 방법..Javascript/AngularJS 2017. 10. 29. 05:11
Ionic v2 ( TypeScript ) 에서 http 요청으로 돌아온 json 값 필터시키는 방법.. import {Component} from '@angular/core'; import {NavController} from 'ionic-angular'; import {Http} from "@angular/http"; interface IMembers { idx: number; email: string; name: string; buse: string; phoneNumber: string; } @Component({ selector: 'page-home', templateUrl: 'home.html' }) export class HomePage { private API_URI: string = "ht..
-
Angular 이벤트 디렉티브Javascript/AngularJS 2017. 10. 23. 23:26
Angular cli 마우스 오버 이벤트로 제이쿼리를 이용해서 동적으로 css class 생성하기 .tsimport {Directive, ElementRef, HostListener} from '@angular/core'; declare var jquery:any; declare var $:any; @Directive({ selector: '[mapHighlight]' }) export class MapHighlightDirective { constructor(private el: ElementRef) {} @HostListener('mouseenter') pathMouseenter() { this.highlight(true); } @HostListener('mouseleave') pathMouselea..