本文整理汇总了TypeScript中@ionic-native/file-transfer.FileTransfer.download方法的典型用法代码示例。如果您正苦于以下问题:TypeScript FileTransfer.download方法的具体用法?TypeScript FileTransfer.download怎么用?TypeScript FileTransfer.download使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@ionic-native/file-transfer.FileTransfer
的用法示例。
在下文中一共展示了FileTransfer.download方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: updateAndroid
updateAndroid() {
const targetPath = this.file.externalApplicationStorageDirectory + '/app/app.apk';
this.localNotifications.schedule({
id: 1000,
title: '正在更新...',
progressBar: { enabled: true, maxValue: 100, value: 0 }
});
const transfer = this.transfer.create();
transfer.onProgress(event => {
const progress = ((event.loaded / event.total) * 100).toFixed(2);
this.localNotifications.update({
id: 1000,
title: '正在更新...',
sound: null,
progressBar: { enabled: true, maxValue: 100, value: Math.round(Number(progress)) }
});
});
transfer.download(this.config.get().hotUpdateUrl.android, targetPath).then(() => {
this.localNotifications.clear(1000);
this.dialog.confirm('更新通知', '新版本下载完成是否现在安装?', () => {
this.fileOpener.open(targetPath, 'application/vnd.android.package-archive');
});
}, e => {
console.log(e);
});
}