我扼杀了能够捕捉到这个错误。 在桌面上,此代码引发此NotSupportedError:
我只是想要正常调试chrome ...
以下是代码:
import {Component} from "@angular/core";
import {ScreenOrientation} from "@ionic-native/screen-orientation";
@IonicPage()
@Component({
selector: 'page-loading',
templateUrl: 'page-loading.html',
})
export class PageLoading {
constructor(private screenOrientation:ScreenOrientation) {}
ionViewDidLoad() {
console.log('ionViewDidLoad PageLoading');
try{
this.screenOrientation.lock(this.screenOrientation.ORIENTATIONS.PORTRAIT).then(()=>{
console.log('lock');
});
}catch(e){
console.warn('No cordova.js')
}
}
}
答案 0 :(得分:2)
您可以创建一个类来模拟离子本机类,如文档here中所述。
class ScreenOrientationMock extends ScreenOrientation {
lock(type) {
return new Promise((resolve, reject) => {
resolve("locked");
})
}
}
在ngModule
中的提供商列表中,提及它应该使用您的模拟类而不是实际的离子类。
providers: [..
{ provide: ScreenOrientation, useClass: ScreenOrientationMock }
]
这将返回resolve
期间在ionic serve
中为屏幕方向设置的任何内容。
您可以在设备中运行后将其删除。
修改强>
还有另一种可能性来抑制你的错误,所以最后你不需要做任何事情:
if(this.platform.is('cordova')){
this.platform.ready().then(()=>{
this.screenOrientation.lock(this.screenOrientation.ORIENTATIONS.PORTRAIT);
})
}