详细问题描述(DCloud产品不会有明显的bug,所以你遇到的问题大都是在特定环境下才能重现的问题,请仔细描述你的环境和重现方式,否则DCloud很难排查解决你的问题)
[内容]
uniapp ios使用uni.request加载:markers数组时第二次进入相关页面出现闪退、卡死;
ios第一次进入相关页面无bug
安卓、微信小程序无此bug。
重现步骤
[步骤]
[结果]
[期望]
[如果语言难以表述清晰,可以拍一个视频或截图,有图有真相]
IDE运行环境说明
[HBuilder 或 HBuilderX]HBuilderX
[IDE版本号]
[windows版本号]
[mac版本号]
App运行环境说明
[Android版本号]
[iOS版本号]
[手机型号]iphone6\7\8 ipad air2
[模拟器型号]
附件
[IDE问题请提供HBuilderX运行日志。菜单帮助-查看运行日志,点右键打开文件所在目录,将log文件压缩成zip包上传]
[App问题请提供可重现问题的代码片段,你补充的细一点,问题就解决的快一点]
index页面:
<template>
<view>
<view @click="to" style="font-size: 50upx; font-weight: bold;">tomap</view>
</view>
</template>
<script>
export default {
data() {
return {}
},
methods: {
to: function() {
uni.navigateTo({
url: '../map/map',
success: res => {},
fail: () => {},
complete: () => {}
});
}
}
}
</script>
<style>
</style>
map页面:
<template>
<view>
<view class="page-body">
<view class="page-section page-section-gap">
<map id="myMap" style="width: 100%; height: 750upx;" :latitude="latitude" :longitude="longitude" :markers="covers"
show-location="true">
</map>
</view>
</view>
<view @click="a">点击加载markers</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'map',
latitude: 0,
longitude: 0,
covers: []
}
},
onLoad: function() {
uni.getLocation({
type: 'gcj02',
success: function(res) {
this.longitude = res.longitude;
this.latitude = res.latitude;
}
});
this.mapCtx = uni.createMapContext('myMap'), // 使用 uni.createMapContext 获取 map 上下文
this.mapCtx.moveToLocation(), //将地图中心移动到当前定位点
this.a();
},
methods: {
a: function() {
uni.request({
url: 'https://www.easy-mock.com/mock/5c0b756075301301e40f0c0d/example/markers',
method: 'GET',
success: (res) => {
this.covers = res.data.list
console.log(res.data.list)
}
})
},
}
}
</script>
<style>
</style>
[安装包]
联系方式
[QQ]2998289501