DownloadTask.abort

2020-08-21 10:11 更新

解釋:中斷下載任務(wù)

方法參數(shù)

示例 

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


圖片示例



代碼示例

<view class="wrap">
    <view class="card-area">
        <button bind:tap="downloadFile" type="primary" loading="{{loading}}" hover-stop-propagation="true">點擊向服務(wù)器發(fā)起下載請求</button>
        <button bind:tap="abortDownloadTask" type="primary" loading="{{loading}}" hover-stop-propagation="true" disabled="{{disabled}}">點擊斷掉前后端鏈接</button>
    </view>
</view>
Page({
    data: {
        disabled: true
    },
    downloadFile() {
        this.setData({ disabled: false})
        const downloadTask = swan.downloadFile({
            url: 'https://smartprogram.baidu.com/docs/img/file-simple.pdf',
            header: {
                'content-type': 'application/json'
            },
            success: res =>{
                console.log(res.tempFilePath);
                swan.showToast({
                    title: '下載成功',
                    icon: 'none'
                });
            },
            fail: err => {
                swan.showToast({
                    title: '下載失敗',
                    icon: 'none'
                });
                console.log('錯誤碼:' + err.errCode);
                console.log('錯誤信息:' + err.errMsg);
            }
        });
        this.downloadTask = downloadTask;
    },
    abortDownloadTask() {
        swan.showModal({
            title: 'title',
            content: '已斷掉'
        });
        this.downloadTask.abort();
    }
});


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號