百度智能小程序 刪除本地存儲(chǔ)的文件

2020-09-05 14:21 更新

swan.removeSavedFile

解釋:刪除本地存儲(chǔ)的文件

Web 態(tài)說明: 受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會(huì)執(zhí)行失敗回調(diào)函數(shù)。

方法參數(shù)

Object object

object參數(shù)說明

屬性名類型必填默認(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í)行)

示例 

在開發(fā)者工具中打開


圖片示例

代碼示例

<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ò)誤碼

Android

錯(cuò)誤碼說明

202

解析失敗,請(qǐng)檢查參數(shù)是否正確

1001

執(zhí)行失敗

2000

文件路徑無效

2001

文件不存在

2002

文件過大

2004

文件刪除失敗

iOS

錯(cuò)誤碼說明

202

解析失敗,請(qǐng)檢查參數(shù)是否正確

2001

文件不存在

2004

文件刪除失敗


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)