跳到主要内容
版本:3.x

Taro.saveFile(option)

保存文件到本地。注意:saveFile 会把临时文件移动,因此调用成功后传入的 tempFilePath 将不可用

支持情况:

参考文档

类型

(option: Option) => Promise<FailCallbackResult | SuccessCallbackResult>

参数

参数类型
optionOption

Option

参数类型必填说明
tempFilePathstring临时存储文件路径
complete(res: TaroGeneral.CallbackResult) => void接口调用结束的回调函数(调用成功、失败都会执行)
fail(result: FailCallbackResult) => void接口调用失败的回调函数
filePathstring要存储的文件路径
apFilePathstring要保存的本地临时文件路径
API 支持度: alipay
success(result: SuccessCallbackResult) => void接口调用成功的回调函数

FailCallbackResult

参数类型说明
errMsgstring错误信息

可选值:
- 'fail tempFilePath file not exist': 指定的 tempFilePath 找不到文件;
- 'fail permission denied, open "${filePath}"': 指定的 filePath 路径没有写权限;
- 'fail no such file or directory "${dirPath}"': 上级目录不存在;
- 'fail the maximum size of the file storage limit is exceeded': 存储空间不足;

SuccessCallbackResult

参数类型说明
savedFilePathstring存储后的文件路径
errMsgstring调用结果

示例代码

Taro.chooseImage({
success: function (res) {
var tempFilePaths = res.tempFilePaths
Taro.saveFile({
tempFilePath: tempFilePaths[0],
success: function (res) {
var savedFilePath = res.savedFilePath
}
})
}
})