W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋?zhuān)韩@取本地已保存的文件列表
Web 態(tài)說(shuō)明: 受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會(huì)執(zhí)行失敗回調(diào)函數(shù)。
Object object
屬性名 | 類(lèi)型 | 必填 | 默認(rèn)值 | 說(shuō)明 |
---|---|---|---|---|
success | Function | 否 | 接口調(diào)用成功的回調(diào)函數(shù),返回結(jié)果見(jiàn) success 返回參數(shù)說(shuō)明。 | |
fail | Function | 否 | 接口調(diào)用失敗的回調(diào)函數(shù) | |
complete | Function | 否 | 接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會(huì)執(zhí)行) |
參數(shù)名 | 類(lèi)型 | 說(shuō)明 |
---|---|---|
fileList |
| 文件列表 |
參數(shù)名 | 類(lèi)型 | 說(shuō)明 |
---|---|---|
filePath | String | 文件的本地路徑 |
createTime | Number | 文件的保存時(shí)的時(shí)間戳,從 1970/01/01 08:00:00 到當(dāng)前時(shí)間的秒數(shù)。 |
size | Number | 文件大小,單位 B |
<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="getSavedFileList">獲取已保存文件列表信息</button>
</view>
</view>
Page({
saveFile() {
swan.downloadFile({
url: 'https://example.com/file/xxx', // 僅為示例,并非真實(shí)的接口地址
success: res => {
swan.saveFile({
tempFilePath: res.tempFilePath,
success: res => {
this.toast('保存成功', 'none');
},
fail: err => {
this.toast('保存失敗,請(qǐng)稍后重試', 'none');
}
});
},
fail: err => {
this.toast('下載失敗,請(qǐng)稍后重試', 'none');
}
});
},
getSavedFileList() {
swan.getSavedFileList({
success: res => {
swan.showModal({
title: 'success',
content: '目前保存文件數(shù)' + res.fileList.length
});
console.log('getSavedFileList success', res);
},
fail: err => {
this.toast('fail', 'none');
console.log('getSavedFileList fail', err);
}
});
},
toast(title, icon) {
swan.showToast({title, icon});
}
});
錯(cuò)誤碼 | 說(shuō)明 |
---|---|
1001 | 執(zhí)行失敗 |
2003 | IO 異常 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: