- 小程序音频地址有特殊字符无法播放
我的小程序里,需要播放法语单词,例https://api.bonjourx.com/public/word/mp3/déblocage.mp3 这个链接在电脑浏览器上面是正常的,在小程序里是无法正常播放的,怎么解??在线等
2019-08-12 - InnerAudioContext.play在wx.scanCode成功回调中 无法播放
https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.play.html 本问题针对ios 安卓系统没问题 InnerAudioContext.play() 在 wx.scanCode 在失败回调中可以正常播放 但在成功回调中 无法播放 也监听不到错误 onShow () { this.innerAudioContext = wx.createInnerAudioContext() this.innerAudioContext.src = "http://downsc.chinaz.net/Files/DownLoad/sound1/201707/8986.mp3" this.innerAudioContext.onPlay(() => { console.log('开始播放') }) this.innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode) }) this.scanCode() }, scanCode () { wx.scanCode({ scanType: ['barCode'], success: res=> { console.log('scancode succ',this.innerAudioContext) this.innerAudioContext.play() }, fail:res=> { console.log('scancode fail',this.innerAudioContext) this.innerAudioContext.play() } }) }
2020-04-20 - wx.scanCode扫描存在自定义参数的小程序码返回的结果path中的参数需不需要decode?
在ide种扫描小程序码后得到的结果:其中path种scene已经encode,但是在真机调试的时候并没有decode。 生产环境中以那种为准呀? ide种返回的结果: charSet: "UTF-8" errMsg: "scanCode:ok" path: "pages/pindex/pindex?scene=shopUserId%3D204%3D2%3Dtrue" rawData: "bGQxazpYWWE3SjZTUGZAXzMuZyhaS2tJZD0yMDQ9Mj10cnVl" scanType: "WX_CODE" 真机调试返回的结果: charSet: "utf-8" codeVersion: 1 errMsg: "scanCode:ok" path: "pages/pindex/pindex?scene=shopUserId=64=2=false" rawData: "bGQxazpYWWE3SjZTUGZAXzMuZyhaS2tJZD02ND0yPWZhbHNl" result: "" scanType: "WX_CODE"
2020-07-14