问题描述
我是Angular的新手。我最近将示例网页部署到了Github Pages。我已成功部署,但是未显示在本地主机上可见的图像。相反,我在控制台上登录了404。
这是包含img
的组件:
home.component.html:
<div>
<img src='assets/images/birthday.jpg' alt='Happy Birthday' width="385px"/>
</div>
我的目录结构是:
|src
|--app
|--assets
|---images
|----birthday.jpg
|dist
|--happy-birthday
|--assets
|---images
|----birthday.jpg
我正在使用angular-cli-ghpages
软件包进行部署。我的Angular版本是10.0.14
。
解决方法
尝试使用/assets/images/birthday.jpg
。
尝试显式给出相对路径(img
相对于home.component.html
的路径)
下面给出一个示例,但是根据您的目录结构,它可能会更改。
<div><img src='../assets/images/birthday.jpg' alt='Happy Birthday' width="385px"/></div>