百度智能小程序 獲取文件信息

2020-09-05 14:21 更新

swan.getFileInfo

解釋:獲取文件信息

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

本地文件路徑

digestAlgorithm

String

md5

計(jì)算文件摘要的算法,有效值:md5,sha1。

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í)行)

success 返回參數(shù)說明

參數(shù)名類型說明

size

Number

文件大小,單位:B。

digest

String

按照傳入的 digestAlgorithm 計(jì)算得出的的文件摘要。

示例


圖片示例

代碼示例 1

獲取臨時(shí)文件信息  在開發(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>
    </view>
    <button type="primary" bindtap="getFileInfo">獲取服務(wù)器上文件信息</button>
</view>
Page({
    getFileInfo() {
        swan.downloadFile({
            header: {
                'Cache-Control': 'no-cache'
            },
            url: 'https://example.com/file/xxx', // 僅為示例,并非真實(shí)的接口地址
            success: res => {
                swan.getFileInfo({
                    filePath: res.tempFilePath,
                    success: res => {
                        console.log('getFileInfo success', res);
                        swan.showModal({
                            title: 'getFileInfo success',
                            content: JSON.stringify(res)
                        });
                    },
                    fail: err => {
                        console.log('getFileInfo fail', err);
                        swan.showModal({
                            title: 'getFileInfo fail',
                            content: JSON.stringify(err)
                        });
                    }
                });
            }
        });
    }
});

圖片示例

代碼示例 2

獲取本地文件信息  在開發(fā)者工具中打開

<view class="wrap">
    <view class="card-area">
        <view class="display-area">
            <image class="display-area-image" src="/images/file-pdf.png" mode="widthFix"></image>
            <view class="title">示例文件.pdf</view>
    </view>
    <button type="primary" bindtap="getFileInfo">獲取本地文件信息</button>
</view>
Page({
    getFileInfo() {
        swan.chooseImage({
            count: 1,
            success: res => {
                const tempFilePaths = res.tempFilePaths;  // 本地文件的路徑(也可通過swan.saveFile獲取)
                swan.getFileInfo({
                    filePath: tempFilePaths[0],
                    success: res => {
                        swan.showModal({
                            title: 'getFileInfo success',
                            content: JSON.stringify(res)
                        });
                        console.log('getFileInfo success', res);
                    },
                    fail: err => {
                        swan.showModal({
                            title: 'getFileInfo fail',
                            content: JSON.stringify(err)
                        });
                        console.log('getFileInfo fail', err);
                    }
                })
            }
        });
    }    
})

代碼示例 3 - digestAlgorithm 為 sha1

獲取本地文件信息  在開發(fā)者工具中打開

Page({
    getFileInfo() {
        swan.downloadFile({
            header: {
                'Cache-Control': 'no-cache'
            },
            url: 'https://example.com/file/xxx', // 僅為示例,并非真實(shí)的接口地址
            success: res => {
                swan.getFileInfo({
                    filePath: res.tempFilePath,
                    digestAlgorithm: 'sha1',
                    success: res => {
                        console.log('getFileInfo success', res);
                        swan.showModal({
                            title: 'getFileInfo success',
                            content: JSON.stringify(res)
                        });
                    },
                    fail: err => {
                        console.log('getFileInfo fail', err);
                        swan.showModal({
                            title: 'getFileInfo fail',
                            content: JSON.stringify(err)
                        });
                    }
                });
            }
        })
    }
})

錯(cuò)誤碼

Android

錯(cuò)誤碼說明

202

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

1001

執(zhí)行失敗

2001

文件不存在

2003

IO 異常

iOS

錯(cuò)誤碼說明

202

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

2001

文件不存在


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)