uni-app获取手机宽高,动态渲染给map的时候慢怎么办,有时候成功,有时候失败,渲染过程慢
<map :style="{height:screenHeight+'px',width:screenWidth+'px'}"></map>
js:
uni.getSystemInfo({
success: function(res) {
console.log(res.windowWidth);
console.log(res.windowHeight)
that.screenWidth = res.windowWidth;
that.screenHeight = res.windowHeight-56;
console.log(that.screenWidth)
console.log(that.screenHeight)
},
});
用户距离您30米 (作者)
宽度写死,无论渲染成不成功,宽都是可以的,只是高这个问题,,比如我设置500px,动态渲染有时候却不成功,一进页面,明明获取到了却没渲染,这是跟我一进来就渲染数据到地图上有关么
2019-02-23 09:41