● 下载文件资源到本地downloadFile
分类:下载
是否支持H5:不支持
参数
Object object
| 参数名 | 类型 | 默认值 | 必填 | 说明 |
|---|---|---|---|---|
| url | string | 是 | 下载资源的 url | |
| header | Object | 否 | HTTP 请求的 Header,Header 中不能设置 Referer | |
| success | function | 否 | 接口调用成功的回调函数 | |
| fail | function | 否 | 接口调用失败的回调函数 | |
| complete | function | 否 | 接口调用结束的回调函数(接口调用成功、失败都会执行) |
object.success 回调函数
参数
Object res
| 属性 | 类型 | 说明 |
|---|---|---|
| data | string/Object/Arraybuffer | 开发者服务器返回的数据 |
| statusCode | number | 开发者服务器返回的 HTTP 状态码 |
调用示例
原生
wx.downloadFile({
url: 'https://open-develop-stg1.paic.com.cn/download/cd4345.jpg',
success: function (res) {
console.log('downloadFile success, res is', res)
},
fail: function ({ errMsg }) {
console.log('downloadFile fail, err is:', errMsg)
}
})