Sir, I have some problem when I download file by URL.
My code snippet like this.
ngOnInit() {
this.items = [
{label: '1.txt', value: 'https://s3.amazonaws.com/uifaces/faces/twitter/calebogden/128.jpg'},
{label: '2.txt', value: 'https://s3.amazonaws.com/uifaces/faces/twitter/josephstein/128.jpg'},
{label: '3.txt', value: 'https://s3.amazonaws.com/uifaces/faces/twitter/olegpogodaev/128.jpg'},
];
this.selectedItem = this.items[0].value;
}
doDownload() {
}
I'm going to download when the doDownload()
function execute.
How to download file by URL in angular 7?