我在controller.ts中有以下内容:
imgFile:File = someFile // that is of type .png.
在HTML中我有:
<img [src]="imgFile">
虽然当我更改img的值时,新图像不会显示(只是变成空图像)。 ??为什么,以及如何在imgFile更改时让img自动更新?
imgFile:File = someOtherFile
答案 0 :(得分:0)
我相信你从一开始就有问题。如果您检查img
代码documentation,就会发现它预计会有url
。而不是将其设为File
类型,为什么不将它设为string
并传递图像网址?我认为应该解决你的问题。