注意,只能用于http/https去下载文件
依赖:
npm install @ionic-native/downloader integrator-cordova-plugin-downloader
import { Downloader } from '@ionic-native/downloader/ngx'; constructor(private downloader: Downloader) { } ... var request: DownloadRequest = { uri: YOUR_URI, title: 'MyDownload', description: '', mimeType: '', visibleInDownloadsUi: true, notificationVisibility: NotificationVisibility.VisibleNotifyCompleted, destinationInExternalFilesDir: { dirType: 'Downloads', subPath: 'MyFile.apk' } }; this.downloader.download(request) .then((location: string) => console.log('File downloaded at:'+location)) .catch((error: any) => console.error(error));
原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/270790.html