- 访问云端的音频数据,编译是可以播放的,但是到真机播放不了为什么?
真机测试结果 [图片] 正常编译 [图片] -访问云端音频在真机播放不了是什么原因?是不是那个src地址有要求? onLoad: function (options) { var that=this; var id=options.id; this.audioCtx = wx.createAudioContext('myAudio') console.log(id) const db=wx.cloud.database() db.collection("introduction").where({ name:id }).get({ success: function (res) { //console.log(res) for (var i = 0, len = res.data.length; i < len; i++) { that.data.file[i] = res.data[i]; //console.log(that.data.file[0]) } that.data.fileid=res.data[0].fileid that.setData({ file: that.data.file, fileid: that.data.fileid }), //console.log(that.data.fileid) wx.cloud.downloadFile({ fileID: that.data.fileid, success: function (res) { console.log(res.tempFilePath) that.audioCtx.setSrc(res.tempFilePath) that.audioCtx.play(); }, fail: function (err) { console.log(err) } }) }, fail: function (err) { console.log(err) } })
2019-06-20 - 文件上传里面的语句问题
[图片] [图片] -为什么这里会执行不了呀?因为什么呀?怎样可以解决这个问题呢? [图片]
2019-06-11 - wx.chooseMessageFile()问题
[图片] [图片] -为什么只有一个数组?
2019-06-04 - 开发文件上传问题
- 开发中文件上传是否只能上传图片格式,不能上传本地word,pdf等文件格式? - 如果可以,怎样使用?
2019-05-30 - 代码提示
- 开发者工具中的代码提示功能消失了吗 - 怎么使用代码提示功能
2019-05-29