1模拟手机摇晃,2播放本地音频
发布于 6 年前 作者 lei85 8023 次浏览 来自 问答

1开发者工具没有模拟手机摇晃。

2playVoice播放本地音频不生效,有输出下载的文件的路径,没报任何错误消息。

wx.downloadFile({

  url: app.musicFilePath,

  success: function(res) {

    console.log(res.tempFilePath)

    wx.playVoice({

      filePath: res.tempFilePath,

      fail: function(e){console.log(e)}

    })

  },

  fail: function(e){console.log(e)}

})

回到顶部