当我尝试检索图像时,在控制台上记录了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
。我该如何解决?
答案 0 :(得分:0)
删除其他条件并使用?
[src]="user?.profileUrl"