uniapp的H5真机调试ios音频播放没声音

安卓的手机音频播放没问题,ios系统“浏览器调试”也有声音,发布到服务器,苹果手机,播放没声音的解决方式如下:

第一步:

npm install weixin-js-sdk

第二步:

第三步:

        methods: {

  // 播放事件
              bofang(){

                   this.innerAudioContext = uni.createInnerAudioContext();
                  this.innerAudioContext = uni.createInnerAudioContext();
                  this.innerAudioContext.src = encodeURI('/static/images/book.mp3');
                  this.innerAudioContext.autoplay = true;
                      //加上苹果手机就可以播放,
                                      wx.config({
                                          debug: false,
                                          appId: '',
                                          timestamp: 1,
                                          nonceStr: '',
                                          signature: '',
                                          jsApiList: []
                                      });
                                      wx.ready(function() {
                                                this.innerAudioContext.play();
                                      });

                              },

                        }

你可能感兴趣的:(javascript,微信,vue.js)