W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋:刪除本地存儲(chǔ)的文件
Web 態(tài)說明: 受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會(huì)執(zhí)行失敗回調(diào)函數(shù)。
Object object
屬性名 | 類型 | 必填 | 默認(rèn)值 | 說明 |
---|---|---|---|---|
filePath | String | 是 | 需要?jiǎng)h除的文件路徑 | |
success | Function | 否 | 接口調(diào)用成功的回調(diào)函數(shù) | |
fail | Function | 否 | 接口調(diào)用失敗的回調(diào)函數(shù) | |
complete | Function | 否 | 接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會(huì)執(zhí)行) |
<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>
<button type="primary" bindtap="deleteFile">刪除已保存文件</button>
</view>
</view>
Page({
data: {
filePath: ''
},
saveFile() {
this.toast('正在保存', 'loading');
swan.downloadFile({
url: 'https://example.com/file/xxx', // 僅為示例,并非真實(shí)的接口地址
success: res => {
swan.saveFile({
tempFilePath: res.tempFilePath,
success: res => {
this.toast('保存成功', 'none');
console.log('文件保存路徑', res.savedFilePath);
},
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.fileList);
this.setData({filelist: res.fileList});
},
fail: err => {
this.toast('fail', 'none');
console.log('getSavedFileList fail', err);
}
});
},
deleteFile() {
const filePath = this.getData('filelist');
if (filePath.length > 0) {
swan.removeSavedFile({
filePath: filePath[0].filePath,
success: res => {
this.toast('已刪除', 'none');
},
fail: err => {
this.toast('操作失敗,請(qǐng)稍后重試', 'none');
}
});
}
},
toast(title, icon) {
swan.showToast({title, icon});
}
});
錯(cuò)誤碼 | 說明 |
---|---|
202 | 解析失敗,請(qǐng)檢查參數(shù)是否正確 |
1001 | 執(zhí)行失敗 |
2000 | 文件路徑無效 |
2001 | 文件不存在 |
2002 | 文件過大 |
2004 | 文件刪除失敗 |
錯(cuò)誤碼 | 說明 |
---|---|
202 | 解析失敗,請(qǐng)檢查參數(shù)是否正確 |
2001 | 文件不存在 |
2004 | 文件刪除失敗 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: