- webview打开空白,且部分安卓打开空白
[图片][图片] 浏览器h5链接直接打开正常,大部分机型可打开小程序
2020-11-28 - 安卓机型多个input组件password之间切换的问题
<input password style="height: 40px; border: solid 1px #ccc "></input> <input password style="height: 40px; border: solid 1px #ccc "></input> <input password style="height: 40px; border: solid 1px #ccc "></input> 安卓 如第一个input获取焦点后,直接点击第二个input,第二个input会获得焦点再失去焦点 当没有input获取焦点时,点击任意一个input都正常
2020-07-03 - wx.downloadFile开发工具中正常,体验/正式保存失败是什么原因?
downLoadHandle(src) { wx.downloadFile({ url: src, success:function (res) { wx.saveImageToPhotosAlbum({ filePath: res.tempFilePath, success:function (data) { wx.showToast({ title: '保存到相册成功', duration: 500 }) }, fail:function(err) { wx.showToast({ icon: 'none', title: '保存到相册失败', duration: 500 }) } }) }, fail: function(err) { wx.showToast({ icon: 'none', title: '保存失败', duration: 500 }) } }) }
2020-06-28