加载图像最初返回404

时间:2018-08-14 06:28:34

标签: angular types angular5

当我尝试检索图像时,在控制台上记录了404错误。

  

获取http://localhost:4200/null 404(未找到)

代码:

 <img [src]="user && user.profileUrl" width="150" height="150" class="rounded" alt="pic">

在上面的代码中,user.profileUrl是一个类似于https://example.com/imag.png的URL。我认为加载图像花了太多时间,在此之前,它返回了404 error。我该如何解决?

1 个答案:

答案 0 :(得分:0)

删除其他条件并使用?

[src]="user?.profileUrl"