我正在尝试使用屏幕方向插件。
change事件已正确触发,但是我无法获得当前的方向类型。
screenOrientationChanged(evt){
console.log('Change orientation.');
console.log(this.screenOrientation.type);
}
ionViewWillEnter() {
window.addEventListener('orientationchange', this.screenOrientationChanged);
}
我正在iOS模拟器中运行,它显示了控制台日志
[ng] [console.error]: "ERROR" {
[ng] "line": 125,
[ng] "column": 43,
[ng] "sourceURL": "http://localhost:8100/mypage-mypage-module.js"
[ng] }
第125行甚至不在mypage-module.ts
我在app.module.ts
而不是mypage.module
处添加了ScreenOrientation ...正确吗?
我做错什么了吗?