收藏
回答

wx.downloadFile 在真机中onload里调不起了,早上都还调动的起?

onLoad: function (options) {

console.log(options)

let _this=this

_this.setData({

poster: options.poster

})

wx.downloadFile({

url: 'https://example.com/audio/123', //仅为示例,并非真实的资源

success(res) {

// 只要服务器有响应数据,就会把响应内容写入文件并进入 success 回调,业务需要自行判断是否下载到了想要的内容

console.log(res)

if (res.statusCode === 200) {

wx.playVoice({

filePath: res.tempFilePath

})

}

}

})

},


回答关注问题邀请回答
收藏

1 个回答

  • 疯狂的小辣椒
    疯狂的小辣椒
    2020-03-10

    你好,看下complete的返回信息,或者debugger看看有没有执行。

    2020-03-10
    有用
    回复 1
    • 人生格言
      人生格言
      2020-03-12
      找到了,图片的链接域名不是https的
      2020-03-12
      回复
登录 后发表内容
问题标签