該模式想獲取視頻元素的currentTime。Angular v4。綁定變量屬性,該DOM元素還不存在
我曾嘗試:
export class Cool implements OnInit {
showVideo=true;
constructor() { }
ngOnInit() {}
video = document.getElementById('video')
progress = 0;
AfterViewInit() {
this.progress = parseInt(this.video.currentTime);
}
}\
但得到一個錯誤,一個屬性不還不存在
招'視頻=的document.getElementById(「視頻」)''的內部ngOnInit'並嘗試 – nmanikiran