- 微信H5支付 iPhone6s+Safari浏览器支付完成返回打开了新页面
微信H5支付 H5网站+iPhone6s+Safari浏览器 设置了 redirect_url 支付完成返回到浏览器发现,原来的支付调起页面跳转到了redirect_url的链接,微信里面支付完成点完成也打开了一个redirect_url新页面; 调起支付是点击mweb_url调起的, 出现了2个redirect_url页面,请问下这个可以怎么解决吗?谢谢
2019-01-22 - rich-text里面使用user-select:text;在IOS上失效了
<rich-text nodes="<div style='user-select:text;-webkit-user-select:text;'>{{content}}</div>"></rich-text> 这么写没改动,之前开发的时候还是都可以的,现在再去看,安卓还是可以,ios手机上就复制不了了,没反应。代码没动过。突然就不行了
2020-09-17 - rich-text能支持复制文字吗?
R.T. text组件我知道是可以通过配置attr实现。 但是rich-text我没有看到相关实现。
2017-12-12 - decode audio fail
- 当前 Bug 的表现(可附上截图) .mp3音频文件播放到一半的时候报错,错误信息:errCode:1001 errMsg: 'errCode67,err:decode audio fail' 尝试过在线播放和下载后播放,都会报错 - 预期表现 正常播放 - 复现路径 使用MIX 2S必现 - 提供一个最简复现 Demo const app = getApp() Page({ data: { innerAudioContext: null }, onShow: function() { this.data.innerAudioContext && this.data.innerAudioContext.stop() this.data.innerAudioContext && this.data.innerAudioContext.play() }, onLoad: function () { const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.src = 'https://xcx-cdn-ali.kaochong.com/hearing/voice_url/voice_url-1550566505778.mp3' innerAudioContext.onPlay(() => { console.log('开始播放') }) innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode) }) this.setData({ innerAudioContext: innerAudioContext }) } })
2019-03-15 - 微信背景音乐部分机型播放出错errCode:67, err:decode audio fail
背景音乐播放时部分机型播放报一下错误,但并不是所有音频都不行,具体原因是什么?这些音频播放不了是什么原因造成的? 错误信息:{"src":"http:\/\/audio.winnerbook.com.cn\/202004\/yqdjw_1.mp3","errCode":10001,"errMsg":"errCode:67, err:decode audio fail"} 系统信息(下面是两个播放不了的机型系统信息):{"screenWidth":360,"windowHeight":667,"bluetoothEnabled":false,"language":"zh_CN","microphoneAuthorized":true,"locationAuthorized":true,"notificationAuthorized":true,"model":"COR-AL10","statusBarHeight":30,"safeArea":{"width":360,"right":360,"top":30,"left":0,"bottom":740,"height":710},"brand":"HONOR","windowWidth":360,"locationEnabled":true,"benchmarkLevel":19,"screenHeight":740,"abi":"arm64-v8a","version":"8.0.1","cameraAuthorized":true,"system":"Android 9","fontSizeSetting":16,"pixelRatio":3,"deviceOrientation":"portrait","wifiEnabled":false,"screenTop":73,"platform":"android","SDKVersion":"2.16.0","enableDebug":false,"devicePixelRatio":3,"host":{"env":"WeChat","version":671089117}} {"screenWidth":360,"windowHeight":710,"bluetoothEnabled":true,"language":"zh_CN","microphoneAuthorized":true,"locationAuthorized":true,"notificationAuthorized":false,"model":"TAS-AN00","statusBarHeight":27,"safeArea":{"width":360,"right":360,"top":27,"left":0,"bottom":780,"height":753},"brand":"HUAWEI","windowWidth":360,"locationEnabled":true,"benchmarkLevel":25,"screenHeight":780,"abi":"arm64-v8a","version":"8.0.2","cameraAuthorized":true,"system":"Android 10","fontSizeSetting":16,"pixelRatio":3,"deviceOrientation":"portrait","wifiEnabled":true,"screenTop":70,"platform":"android","SDKVersion":"2.16.0","enableDebug":false,"devicePixelRatio":3,"host":{"env":"WeChat","version":671089209}}
2021-04-02 - wx.loadFontFace在安卓手机全局生效,但进不同的页面会多次加载字体文件
在app.js调用loadFontFace并设置为全局后,在安卓手机(小米8)上先后打开小程序不同页面,在小程序保持前台显示的情况下,不同页面中会重复加载同一个字体文件。这样用户耗费流量大,且体验不好(字体加载后出现抖动),辛苦关注。
2020-04-19