當模板中的div更改大小時執行某些操作的最佳方式是什麼?調整窗口大小時,div的大小會發生變化。使用Rxjs Observable /訂閱還是以其他方式?如何觀察Angular 2中元素大小的變化
模板:
<div #eMainFrame class="main-frame">
...
</div>
組件:
@Component({
selector: 'app-box',
templateUrl: './box.component.html',
styleUrls: ['./box.component.css']
})
export class BoxComponent implements OnInit {
@ViewChild('eMainFrame') eMainFrame : ElementRef;
constructor(){}
ngOnInit(){
// This shows the elements current size
console.log(this.eMainFrame.nativeElement.offsetWidth);
}
}
更新組件(本實施例中檢測當窗口尺寸被改變)
constructor(ngZone: NgZone) {
window.onresize = (e) => {
ngZone.run(() => {
clearTimeout(this.timerWindowResize);
this.timerWindowResize = setTimeout(this._calculateDivSize, 100);
});
}
}
_calculateDivSize(){
console.log(this.eMainFrame.nativeElement.offsetWidth);
}
但是這給我一個錯誤:
EXCEPTION: Cannot read property 'nativeElement' of undefined
您是否嘗試過'element.resize'?這可能有所幫助:http://stackoverflow.com/questions/21170607/angularjs-bind-to-directive-resize – Rajesh