Skip to content

Instantly share code, notes, and snippets.

@Kun786
Kun786 / admin.component.html
Created April 14, 2020 02:13
MeanStack (Upload and Get Image app) Upload image succesfully but cannot get the image on angular front end. The data reached my component.ts where is console it but I am unable to print it on component.html. Please help me to learn and solve this problem.
<div id="div">
<input type="file" name="image" ng2FileSelect [uploader]="uploader" name="file" id="file" />
<br>
<br><br>
<button type="button" class="btn btn-outline-info" (click)="uploader.uploadAll()"
[disabled]="!uploader.getNotUploadedItems().length">
Upload an Image
</button>
</div>
<br><br><br>