小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如上图,map上自定义气泡 customCallout,cover-image显示头像,真机上进入页面加载不出来,随便点击其中一个之后所有头像就又会出来了。
代码片段:https://developers.weixin.qq.com/s/tWEGXKm97ZBp
真机环境:ios iphone 12 mini
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
同样的问题1:https://developers.weixin.qq.com/community/develop/doc/0006427b780190f1210d530315b400?highLine=map%2520custom-callout%25E4%25B8%25AD%25E4%25BD%25BF%25E7%2594%25A8cover-image
同样的问题2:https://developers.weixin.qq.com/community/develop/doc/000ace3d6f42803528dd8efae51c00
都没人回复。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
同样的问题1:https://developers.weixin.qq.com/community/develop/doc/0006427b780190f1210d530315b400?highLine=map%2520custom-callout%25E4%25B8%25AD%25E4%25BD%25BF%25E7%2594%25A8cover-image
同样的问题2:https://developers.weixin.qq.com/community/develop/doc/000ace3d6f42803528dd8efae51c00
都没人回复。
getUserProfile(e){
console.log(e);
wx.getUserProfile({
desc: '获取昵称和头像',
success:resd=>{
let nickName = resd.userInfo.nickName;
let img = resd.userInfo.avatarUrl;
console.log(resd);
wx.login({
success: (res) => {
let code = res.code;
console.log(code);
wx.request({
url: 'http://www.123.com/index.php/menu/aaa',
data:{nickName,img,code},
method:"POST",
dataType:"json",
success:res=>{
wx.showToast({
title: '登录失败',
icon:"error",
})
wx.setStorageSync('userNessage', this.userInfo)
wx.showToast({
title: '登录成功',
icon:"success",
})
setTimeout(function(){
wx.reLaunch({
url: '/pages/bbb/bbb',
}) },2000)}
})},
})}})},