getBackgroundAudioManager 提示 invalid url domain?
wx.checkJsApi({
jsApiList: ['getBackgroundAudioManager'],
success: function (res) {
if (res.checkResult.getLocation == false) {
alert('你的微信版本太低,不支持微信JS接口,请升级到最新的微信版本!');
return;
}
}
});
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: fetch_data.appId,//_this.$store.state.wxAppId
timestamp: fetch_data.timestamp ? fetch_data.timestamp : 1,
nonceStr: fetch_data.nonceStr ? fetch_data.nonceStr : '',//nonceStr
signature: fetch_data.signature ? fetch_data.signature : '',
jsApiList: ['getBackgroundAudioState', 'getBackgroundAudioManager'] // 必填,
});
wx.ready(function () {
const music = wx.getBackgroundAudioManager()
music.src = _this.audioUrl
music.title = _this.audioTitle
});
配置如上 提示invalid url domain