在角度7 我需要通过使用Blob对象和createObjectURL显示来自databae的个人资料图片 对本地主持人的情绪很好 但在iis服务器上发布正式版时不起作用 谁能帮我解决这个问题
我的语言代码
this.usersService.prieveiewFileDB(this.AttachId).subscribe(Attach=>{
console.log(Attach)
let file = new Blob([Attach], { type:"image"});
let unsafeImageUrl = URL.createObjectURL(file);
this.imageUrl = this.sanitizer.bypassSecurityTrustUrl(unsafeImageUrl);
})
});
HTML
<button mat-button [matMenuTriggerFor]="profile">
<span class="img_prf">
<img [src]="imageUrl" alt="image">
</span>
<span class="usr_name">{{userName}}</span>
<i class="fas fa-caret-down"></i>
</button>