wx.openLocation,android机器打开地图页面,会先显示微信首页
手机品牌: 一加3T
android系统:8.0.0
wx.openLocation({ latitude: +latitude, longitude: +longitude, name, address, }); |
微信版本:7.0.3
bug描述:
在小程序里面调用wx.openLocation
期望:正常打开微信的地图页面
结果:先打开了微信的启动页(有个人站在月球遥看地球的页面),然后再打开地图页面
我们这边怀疑是因为我们小程序里面的图片太多,导致内存不够
3 回复
onMap = () => { const { detail = {} } = this .props; const { latitude, longitude, name, address } = detail; Taro.openLocation({ latitude: +latitude, longitude: +longitude, name, address, }); console.log( '跳转地图' ); } <View className= 'wrap' > <Once onClick={ this .onMap}> <View className= 'map' > <View className= 'map-address' > {address} </View> <View className= 'map-img' > <View className= 'map-gradient' /> </View> </View> </Once> </View> |
期待尽快回复