首页 > 解决方案 > 部署网站后不显示图像的相对路径

问题描述

[ ][1]我存储在我的投资组合中的图像在本地提供时显示,但在网站部署后,它不显示。我正在使用最新版本的 Angular fyi 以下是我正在使用的代码片段。这是我电脑上的图像,我存储在位于资产下的图像文件夹中。

  <img alt="Kristopher Lea" src="../assets/images/KristopherLea2.jpg">
  <h3 class="city">Hometown:
    {{city}}
  </h3>

标签: angular

解决方案


图像 src 应如下所示:

<img alt="Kristopher Lea" src="assets/images/KristopherLea2.jpg">

或者:

<img alt="Kristopher Lea" src="/assets/images/KristopherLea2.jpg">

推荐阅读