微信应用号小程序下载wx.downloadFile(OBJECT)
wx.downloadFile(OBJECT)
? 下载文件资源到本地。客户端直接发起一个HTTP GET请求,把下载到的资源根据 type 进行处理,并返回文件的本地临时路径。
OBJECT参数说明:
参数 | 类型 | 必填 | 必填 |
---|---|---|---|
url | String | 是 | 下载资源的 url |
type | String | 否 | 下载资源的类型,用于客户端识别处理,有效值:image/audio/video |
header | Object | 否 | HTTP 请求 Header |
success | Function | 否 | 下载成功后以 tempFilePath 的形式传给页面,res={tempFilePath:"文件的临时路径"} |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例代码:
wx.downloadFile({
url: ‘http://qkxue.net/‘,
type: ‘audio‘,
success:function(res){
wx.playVoice({
filePath: res.tempFilePath
})
}
})稿源:勤快学QKXue.NET
时间: 2024-10-20 11:44:42