onLoad(() => {
const {
windowHeight,
windowWidth
} = uni.getSystemInfoSync()
console.log("windowHeight", windowHeight); // 返回0
console.log("windowWidth", windowWidth); // 返回0
})
- 发布:2024-11-11 13:19
- 更新:2024-11-18 14:35
- 阅读:67
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win11
HBuilderX类型: 正式
HBuilderX版本号: 4.29
手机系统: HarmonyOS NEXT
手机系统版本号: HarmonyOS NEXT Developer Beta1
手机厂商: 模拟器
手机机型: 手机模拟器
页面类型: vue
vue版本: vue3
打包方式: 云端
项目创建方式: HBuilderX
示例代码:
操作步骤:
onLoad(() => {
const {
windowHeight,
windowWidth
} = uni.getSystemInfoSync()
console.log("windowHeight", windowHeight); // 返回0
console.log("windowWidth", windowWidth); // 返回0
})
onLoad(() => {
const {
windowHeight,
windowWidth
} = uni.getSystemInfoSync()
console.log("windowHeight", windowHeight); // 返回0
console.log("windowWidth", windowWidth); // 返回0
})
预期结果:
输出屏幕高度
输出屏幕高度
实际结果:
输出0
输出0
bug描述:
在onload中调用uni.getSystemInfoSync(),其中windowHeight,windowWidth 为 0
2***@qq.com (作者)
1
2024-11-18 14:41