私は次のものを持っています:
angular2 (NameCmp)
import {
OnInit, Component, ChangeDetectionStrategy, ViewChild, ElementRef,
AfterViewInit
} from 'angular2/core'
import {Observable} from 'rxjs/Observable';
..
export class NameCmp implements AfterViewInit{
....
@ViewChild('card')
card: ElementRef;
mouseMoves$: Observable<MouseEvent>;
ngAfterViewInit(): void {
this.mouseMoves$ = Observable.fromEvent(this.card.nativeElement, 'mousemove');
this.mouseMoves$.subscribe( event => console.log('logging mousemove'));
console.log('after view init')
}
.html
...
<md-card #card>
<md-card-content>
<md-input
required
placeholder = "Title"
[ngFormControl] = "titleCtrl"></md-input>
</md-card-content>
</md-card>
ただし、console.log('after view init')
コンソールに出力されますが、console.log('logging mousemove'));
ステートメントは出力されません。
ありがとう