- 地图MAP 如何添加自定义信息窗?
MapContext 没看到有可以添加信息窗的api
08-29 - 报告一个bug
wx.getLocation({ type: 'gcj02', //返回可以用于wx.openLocation的经纬度 success: res => { console.log(res) const latitude = res.latitude const longitude = res.longitude wx.chooseLocation({ latitude, longitude, success: data => { console.log(data) this.setData({ town: data.address, address: data.name }) } }) } }) 在手机型号 M2003J15SC 版本 MIUI12.0.5 上微信小程序无法正常弹出位置选择 (位置信息已同意获取)
2020-12-29 - 小程序 input hidden状态下 为什么无法通过focus拉起键盘?
不能通过focus拉起键盘 请提供拉起键盘的API啊 只看到有以下API没有拉起的 [图片]
2020-11-11 - picker-view picker-view-column无法撑开
[图片][图片]
2020-10-13 - 小程序页面样式加入-webkit-overflow-scrolling:touch会导致触摸不灵敏?
有时会滚动不了
2019-11-01 - wx.getMenuButtonBoundingClientRect() 在真机上获取的数据有问题?
在开发工具中获取:top:26 bottom:58 [图片] 真机上获取 iphon 6 plus:top:24 bottom:56 [图片] 在自定义顶部导航栏时 顶部导航栏高度值比微信自带少了4px 未使用自定义顶部导航: [图片] 使用自定义导航: [图片] 导致感官上带来很大差异
2019-10-09 - 小程序左上角的返回按钮 怎么监听?
需求监听该行为 返回到指定的页 或 调用事件
2019-09-09 - 真机调试找不到页面 开发工具上能正常进入页面?
[图片]
2019-08-10 - wx.downloadFile下载文件其后缀被改成MSWORD,无法打开?
[图片] 使用wx.downloadFile 下载后端传过来的文件地址 下载后文件后缀变成.msword 导致使用 wx.openDocument无法打开 bindTapDownload(e){ let url = e.currentTarget.dataset.url; [代码]console.log('文件地址'+url); wx.downloadFile({ url: url, success(res) { console.log(res); if (res.statusCode === 200) { const filePath = res.tempFilePath; //打开文件 wx.openDocument({ filePath: filePath, success(res){ console.log('文件打开'); }, fail(res){ console.log(res) } }) } } })[代码]}, 文件地址:https://sxlm-bucket.oss-cn-shenzhen.aliyuncs.com/data/temp/1563845512444.doc
2019-07-24