我是新的有角的材料,我试图任何图像我上传采取的立场,我的头像图像。首先,头像图像是不显示,其次,当我上传的图像,它不显示。
HTML语言
<div class="select-image">
<img [src]="imgSource" class="circle hims-orange" [class.circle]="circle" alt="Avatar" (click)="select.click()">
<button mat-mini-fab color="accent" matTooltip="Add Image" class="select-btn" type="button" (click)="select.click()">
<mat-icon>add_a_photo</mat-icon>
</button>
<input type="file" accept="image/gif, image/jpeg, image/png" #select hidden (change)="imageChanged($event)" />
</div>
时间
imageChanged(imgSource?: MatCardImage): void {
this.image = this.imgSource
console.log('working')
};
1条答案
按热度按时间af7jpaap1#
请查看以下有角材料图像上传示例:
上传图像.组件.html:
上传图像.组件.ts:
工作堆栈 lightning 战示例here。