const recordCtx = wx.createInnerAudioContext();
recordCtx.src = 'http://baidu.com/images/12.mp3';
console.log('test');
recordCtx.onError = (e) => {
console.log(e, 'error')
};
s上面这段代码运行后,控制台报错了,但是onError不会触发,这样我就没法在资源失败的时候做处理。。。
这样写