Upload image and show preview in angular || Angular || Angular Tutorial || Image Upload In Angular

preview_player
Показать описание
In this video I have shown how to show preview of uploaded Image.

THANKS FOR WATCHING
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Follow me on:-

#angular #angulartutorial #angularcourse
Рекомендации по теме
Комментарии
Автор

Thank you great video! I had to make updates to make it work for TypeScript and all the types.. For the template code use:
<input type="file" class="d-none" #imageInput/> For the typescript code use:
url: string|null|ArrayBuffer = './assets/banner1.jpg'
onFileSelected(files: FileList | null) {
if (files) {
var reader = new FileReader()

reader.onload = (event:Event) => {
let fileReader = event.target as FileReader
this.url = fileReader.result;
}
}
}

djohnson-kucl
Автор

Thanks for the video! HELPED ME A LOT IN MY STUDIES :) . For those using Angular 12 or 13 adjust onselectFile(event) use "any" onselectFile(event:any).

daniloporto
Автор

Thanks for the video. Help me a lot for the upload part.

weixiangng
Автор

Thank You SO Much, it has been easier than other ways I saw. I need this hehehe Thanks!

noelara
Автор

thank you so much sir, this video helped in saving my job

utkarshgupta
Автор

Thank you so much sir, this video is very informative for me...

santoshborgad
Автор

sir want to know how to display an image after complete load of angular module /component .. after complete loading only it should display until then visibility is hidden

vikasswamy
Автор

thank you sir really you saved me dil se salaam

surajdhimaan
Автор

sir, if user selects a video then it should preview video and if user selects photo then it should preview photo, how to do it please help.

utkarshgupta
Автор

thank you so much for making this video

thisworld
Автор

Does it also show a preview when I try to upload a pdf file? I need to read the file and convert it into blob /base64 string to save it in db

MhmmDonuts
Автор

niceee video Can u make one about multi step form with angular please ? it will be amazing

georgeak
Автор

hmmm, it's hitting reader.onload but not updating the front end with the picture.

MZ-uvsr
Автор

How can be saved in angular using ajax and laravel

suvendubiswal
Автор

I dont understand, where is the upload ? in which folder can i find it ?

talalzeid
Автор

can you please tell how to upload image in local angular folder

SusantaMuduli
Автор

sir how to update image in angular please make video on it

CodeWithJamil
Автор

Sir we are waiting for new video please upload sir ❤️❤️❤️

cricketloverz