W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
解釋:獲取本地文件的文件信息。此接口只能用于獲取已保存到本地的文件,若需要獲取臨時文件信息,請使用 getFileInfo 接口。
Web 態(tài)說明: 受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會執(zhí)行失敗回調(diào)函數(shù)。
Object object
屬性名 | 類型 | 必填 | 默認值 | 說明 |
---|---|---|---|---|
filePath | String | 是 | 文件路徑 | |
success | Function | 否 | 接口調(diào)用成功的回調(diào)函數(shù),返回結(jié)果見 success 返回參數(shù)說明。 | |
fail | Function | 否 | 接口調(diào)用失敗的回調(diào)函數(shù) | |
complete | Function | 否 | 接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會執(zhí)行) |
參數(shù)名 | 類型 | 說明 |
---|---|---|
size | Number | 文件大小,單位 B |
createTime | Number | 文件保存時的時間戳,從 1970/01/01 08:00:00 到該時刻的秒數(shù)。 |
<view class="wrap">
<view class="card-area">
<view class="display-area">
<image class="display-area-image" src="https://b.bdstatic.com/searchbox/icms/searchbox/img/file-pdf.png" rel="external nofollow" mode="widthFix"></image>
<view class="title">示例文件.pdf</view>
</view>
<button type="primary" bindtap="saveFile">保存文件</button>
<button type="primary" bindtap="getSavedFileInfo">獲取本地文件的文件信息</button>
</view>
</view>
Page({
data: {
filePath: ''
},
saveFile() {
this.toast('正在保存', 'loading');
swan.downloadFile({
url: 'https://example.com/file/xxx', // 僅為示例,并非真實的接口地址
success: res => {
swan.saveFile({
tempFilePath: res.tempFilePath,
success: res => {
this.toast('保存成功', 'none');
this.data.filePath = res.savedFilePath;
},
fail: err => {
this.toast('保存失敗,請稍后重試', 'none');
}
});
},
fail: err => {
this.toast('下載失敗,請稍后重試', 'none');
}
});
},
getSavedFileInfo() {
swan.getSavedFileList({
success: res => {
if (res.fileList.length > 0) {
const filePath = res.fileList[0].filePath;
swan.getSavedFileInfo({
filePath,
success: res => {
swan.showModal({
title: 'success',
content: JSON.stringify(res)
});
console.log('getSavedFileList success', res);
},
fail: err => {
swan.showToast({
title: 'fail',
icon: 'none'
});
console.log('getSavedFileList fail', err);
}
});
}
}
});
},
toast(title, icon) {
swan.showToast({title, icon});
}
});
錯誤碼 | 說明 |
---|---|
202 | 解析失敗,請檢查參數(shù)是否正確 |
1001 | 執(zhí)行失敗 |
2001 | 文件不存在 |
2003 | IO 異常 |
錯誤碼 | 說明 |
---|---|
202 | 解析失敗,請檢查參數(shù)是否正確 |
2001 | 文件不存在 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: