我想在全屏显示时推送页面,但出现错误,无法读取HTMLVideoElement上未定义的属性“ push”
playvideo() {
let e = this.video.nativeElement as HTMLVideoElement;
e.webkitEnterFullScreen();
e.play();
e.addEventListener("webkitfullscreenchange", function () {
if (!document.webkitIsFullScreen) {
e.pause();
this.navCtrl.push(HomePage);
}
}, false);
}
退出全屏模式后,我可以暂停视频,但不能推送页面。我已经搜索过,但找不到与此相关的任何东西。
错误:
错误TypeError:无法读取未定义的属性“ push” 在HTMLVideoElement