W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋:獲取文件信息
Web 態(tài)說明: 受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會(huì)執(zhí)行失敗回調(diào)函數(shù)。
Object object
屬性名 | 類型 | 必填 | 默認(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í)行) |
參數(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ò)誤碼 | 說明 |
---|---|
202 | 解析失敗,請(qǐng)檢查參數(shù)是否正確 |
1001 | 執(zhí)行失敗 |
2001 | 文件不存在 |
2003 | IO 異常 |
錯(cuò)誤碼 | 說明 |
---|---|
202 | 解析失敗,請(qǐng)檢查參數(shù)是否正確 |
2001 | 文件不存在 |
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)系方式:
更多建議: