wx.saveFile(OBJECT)
保存文件到本地。
OBJECT参数说明:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| tempFilePath | String | 是 | 需要保存的文件的临时路径 |
| success | Function | 否 | 返回文件的保存路径,res = {savedFilePath: '文件的保存路径'} |
| fail | Function | 否 | 接口调用失败的回调函数 |
| complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success返回参数说明:
| 参数 | 说明 |
|---|---|
| savedFilePath | 文件的保存路径 |
示例代码:
wx.chooseImage({ success: function(res) { var tempFilePath = res.tempFilePath wx.saveFile({ tempFilePath: tempFilePath[0], success: function(res) { var savedFilePath = res.savedFilePath } }) }})bug & tip
tip: 本地文件存储的大小限制为 10M
wx.getFileInfo(OBJECT)
基础库 1.4.0 开始支持,低版本需做兼容处理
获取文件信息
OBJECT参数说明:
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| filePath | String | 是 | 本地文件路径 |
| digestAlgorithm | String | 否 | 计算文件摘要的算法,默认值 md5,有效值:md5,sha1 |
| success | Function | 否 | 接口调用成功的回调函数 |
| fail | Function | 否 | 接口调用失败的回调函数 |
| complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success返回参数说明:
| 参数名 | 类型 | 说明 |
|---|---|---|
| size | Number | 文件大小,单位:B |
| digest | String | 按照传入的 digestAlgorithm 计算得出的的文件摘要 |
| errMsg | String | 调用结果 |
示例代码:
wx.getFileInfo({ success(res) { console.log(res.size) console.log(res.digest) }})wx.getSavedFileList(OBJECT)
获取本地已保存的文件列表
OBJECT参数说明:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| success | Function | 否 | 接口调用成功的回调函数,返回结果见success返回参数说明 |
| fail | Function | 否 | 接口调用失败的回调函数 |
| complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success返回参数说明:
| 参数 | 类型 | 说明 |
|---|---|---|
| errMsg | String | 接口调用结果 |
| fileList | Object Array | 文件列表 |
fileList中的项目说明:
| 键 | 类型 | 说明 |
|---|---|---|
| filePath | String | 文件的本地路径 |
| createTime | Number | 文件的保存时的时间戳,从1970/01/01 08:00:00 到当前时间的秒数 |
| size | Number | 文件大小,单位B |
示例代码:
wx.getSavedFileList({ success: function(res) { console.log(res.fileList) }})wx.getSavedFileInfo(OBJECT)
获取本地文件的文件信息。此接口只能用于获取已保存到本地的文件,若需要获取临时文件信息,请使用 wx.getFileInfo 接口。
OBJECT参数说明:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| filePath | String | 是 | 文件路径 |
| success | Function | 否 | 接口调用成功的回调函数,返回结果见success返回参数说明 |
|
版权声明 即速应用倡导尊重与保护知识产权。如发现本站文章存在版权问题,烦请提供版权疑问、身份证明、版权证明、联系方式等发邮件至197452366@qq.com ,我们将及时处理。本站文章仅作分享交流用途,作者观点不等同于即速应用观点。用户与作者的任何交易与本站无关,请知悉。
最新资讯
|














