小程序
小游戏
企业微信
微信支付
扫描小程序码分享
现在已经有很多人在提问了,请问该如何处理呢?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我遇到了播放地址有特殊字符会报这个 比如空格 用encodeURIComponent转换一下就行
https://developers.weixin.qq.com/community/develop/article/doc/000682189301f8edd6cce43c651413
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
只有在手机上才可以重现。点击关闭小城,然后再重新打开,就会报这个错误,希望官方尽快给出解决方案。
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
//背景音频播放进度更新事件
innerAudioContext.onTimeUpdate(() => {
that.setData({
current_process: format(innerAudioContext.currentTime),
total_process: format(innerAudioContext.duration)
});
})
innerAudioContext.onPlay(() => {
innerAudioContext.onError((res) => {
console.log(res.errMsg)
console.log(res.errCode)
wx.showModal({
title: '提示',
content: '音频播放错误:' + res.errMsg,
showCancel:false,
success(res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
// 背景音频播放完毕
innerAudioContext.onEnded(() => {
if (!this.data.is_loop) {
this.setData({ is_play: false });
} else {
// 单曲循环
this.setData({
current_process: '00:00',
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我遇到了播放地址有特殊字符会报这个 比如空格 用encodeURIComponent转换一下就行
https://developers.weixin.qq.com/community/develop/article/doc/000682189301f8edd6cce43c651413
只有在手机上才可以重现。点击关闭小城,然后再重新打开,就会报这个错误,希望官方尽快给出解决方案。
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
微信版本 8.0.12
libVersion 2.18.0
我试了其他版本的sdk问题依旧
这是我自己的手机
另外就是我在微信客服助手里接到N多用户反馈这个问题,只要使用了innerAudioContext组件,都会报,主要是我写得小程序都监听了innerAudioContext的错误事件并提示
//背景音频播放进度更新事件
innerAudioContext.onTimeUpdate(() => {
that.setData({
current_process: format(innerAudioContext.currentTime),
total_process: format(innerAudioContext.duration)
});
})
innerAudioContext.onPlay(() => {
})
innerAudioContext.onError((res) => {
console.log(res.errMsg)
console.log(res.errCode)
wx.showModal({
title: '提示',
content: '音频播放错误:' + res.errMsg,
showCancel:false,
success(res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
}
})
})
// 背景音频播放完毕
innerAudioContext.onEnded(() => {
if (!this.data.is_loop) {
this.setData({ is_play: false });
} else {
// 单曲循环
this.setData({
current_process: '00:00',
})
}
})
关闭小程序 再打开 就会报错