记录uniapp的开发APP点滴。 有时候开发需要横竖屏切换,这时候该咋办,废话不哆嗦,上代码。
// 开启横竖屏自由切换
// #ifdef APP-PLUS
plus.screen.lockOrientation('default');
// #endif
//横屏
// #ifdef APP-PLUS
plus.screen.lockOrientation('landscape-primary');
// #endif
//竖屏
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
最后一定要记得在页面销毁的时候重置回来屏幕
onUnload() {
// #ifdef APP-PLUS
plus.screen.lockOrientation('portrait-primary');
// #endif
}
记得要在APP环境下才有效!!!