Angular upload image and display to user
问题 Id like to implement a UI where the user selects an image and that image is instantly displayed back to them for review. The user would have to click "submit" to upload/save the image to their profile. I am having issues with the "instantly display back to the user part". I am using angular FormData with the following markup & controller: MARKUP <input id="chooseFile" type="file" file-model="picFile" /> <img src="{{uploadedImage}}" /> <!-- this populates with filename but what is the path?? -