Upload d'images et affichage des dites
images
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<form [formGroup]="imgForm" (ngSubmit)="onSubmit(imgForm.value)" autocomplete="off" style="padding: 10px;">
|
||||
<p>
|
||||
<input type="file" #fileUpload id="fileUpload" name="fileUpload" accept="image/*" style="display: none"
|
||||
<input type="file" #fileUpload id="fileUpload" name="fileUpload" accept="image/*" style="display: none;"
|
||||
formControlName="image" (change)="onFileChanged($event)" />
|
||||
<button (click)="fileUpload.click()">Select File</button>
|
||||
</p>
|
||||
@@ -15,4 +15,27 @@
|
||||
<mat-icon>file_upload</mat-icon>
|
||||
Upload image
|
||||
</button>
|
||||
<label>{{ imageError }}</label>
|
||||
</form>
|
||||
|
||||
<table mat-table [dataSource]="dataSourceTable">
|
||||
<ng-container matColumnDef="id">
|
||||
<th mat-header-cell *matHeaderCellDef>ID</th>
|
||||
<td mat-cell *matCellDef="let element">{{element.id}}</td>
|
||||
</ng-container>
|
||||
|
||||
<ng-container matColumnDef="comment">
|
||||
<th mat-header-cell *matHeaderCellDef>Name</th>
|
||||
<td mat-cell *matCellDef="let element">{{element.comment}}</td>
|
||||
</ng-container>
|
||||
|
||||
<ng-container matColumnDef="data">
|
||||
<th mat-header-cell *matHeaderCellDef>Manufacturer</th>
|
||||
<td mat-cell *matCellDef="let element"><img src="{{element.data}}" alt="toto"></td>
|
||||
</ng-container>
|
||||
|
||||
<tr mat-header-row *matHeaderRowDef="displayedColumns; sticky: true"></tr>
|
||||
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
|
||||
</table>
|
||||
|
||||
<mat-paginator [length]="resultsLength" [pageSize]="10"></mat-paginator>
|
||||
|
||||
Reference in New Issue
Block a user