W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
解釋?zhuān)涸谖募Y(jié)尾追加內(nèi)容的同步接口。
Web 態(tài)說(shuō)明:受瀏覽器限制,Web 態(tài)不支持文件系統(tǒng)相關(guān)功能,調(diào)用該方法會(huì)拋出一個(gè)標(biāo)準(zhǔn)的 Error 對(duì)象。
方法參數(shù):String filePath, String/ArrayBuffer data, String encoding
filePath
參數(shù)說(shuō)明:文件路徑。
data
參數(shù)說(shuō)明:要追加的文本。
encoding
參數(shù)說(shuō)明:指定寫(xiě)入文件的字符編碼。
encoding 的合法值
若接口調(diào)用失敗,會(huì)拋出一個(gè)標(biāo)準(zhǔn)的Error對(duì)象
<view class="wrap">
<button type="primary" bindtap="appendFileSync">在文件結(jié)尾追加內(nèi)容</button>
</view>
Page({
data: {
filePath: ''
},
onLoad() {
this.fileSystemManager = swan.getFileSystemManager();
swan.downloadFile({
url: 'https://b.bdstatic.com/docs/demo.txt',
success: res => {
swan.showToast({
title: `文件預(yù)下載完成,臨時(shí)路徑為${res.tempFilePath}`,
icon: 'none'
})
// 此為 “本地臨時(shí)文件” 路徑。
this.data.filePath = res.tempFilePath;
// 將 “本地臨時(shí)文件” 持久化成 “本地用戶(hù)文件”。
this.fileSystemManager.saveFileSync(res.tempFilePath, `${swan.env.USER_DATA_PATH}/a.txt`);
}
});
},
appendFileSync() {
try {
let result = this.fileSystemManager.appendFileSync(
`${swan.env.USER_DATA_PATH}/a.txt`,
'appendFileData',
);
swan.showToast({
title: 'appendFileSync success',
icon: 'none'
});
console.log('appendFileSync success');
}
catch (err) {
swan.showToast({
title: `${err}`,
icon: 'none'
});
console.log('appendFileSync fail', err);
}
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: