收藏
回答

定时循环播放mp3,大概40分钟后,报错 INNERERRCODE -11800?

定时循环播放mp3,大概40分钟后,报错 INNERERRCODE -11800


代码:

var innerAudioContext = wx.createInnerAudioContext()

innerAudioContext.autoplay = false;

innerAudioContext.onEnded(function(e) {

if (voiceIdx >= voices.length)

return;

innerAudioContext.src = app.globalData.voiceCache[voices[voiceIdx++]];

innerAudioContext.play();

});

innerAudioContext.src = app.globalData.voiceCache[voices[voiceIdx++]];

innerAudioContext.play();

this.innerAudioContext = innerAudioContext;



运行40分钟后,小程序非常卡,报错:




开始都是正常的,一段时间之后崩了。我感觉小程序内部有内存泄露。请帮忙检查确认下。

回答关注问题邀请回答
收藏

2 个回答

  • 辰
    2019-10-28

    跟大家汇报下小程序声音内存泄露问题。网上我发现已经有很多人都遇到多,解决方案是:

    this.innerAudioContext.stop();

    this.innerAudioContext.destroy();

    this.innerAudioContext = null;


    要定期的去destroy这个context。不然这个context就算stop了,内存还是被占用。至于官方想不想改自便吧。

    2019-10-28
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2019-10-21

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2019-10-21
    有用
    回复 2
    • 辰
      2019-10-22
      所有我碰到的机型都遇到(iphone8plus, 荣耀, iphonex等)。微信版本:7.0.8。 系统版本:ios13
      2019-10-22
      回复
    • 疯狂的小辣椒
      疯狂的小辣椒
      2019-10-22回复
      按照上面的提示补全信息
      2019-10-22
      回复
登录 后发表内容
问题标签