Angular、"title" & "alt" 在 <img> 标签中

Angular, "title" & "alt" in <img> tag

我想为每个图像设置 <img title=""> 属性。但是我想要图像本身具有的 title 。我应该如何在代码中做到这一点 下面是我在 .html

中的代码
<div class="img-wrapper">
  <img src="data:image/png;base64,{{document.file}}" alt="img-alt" title="" class="img" style="width: 100%; height: 100%;">
</div>

尝试

<div class="img-wrapper">
  <img src="data:image/png;base64,{{document.file}}" [alt]="document.alt" [title]="document.title" class="img" style="width: 100%; height: 100%;">
</div>```