使用车把时我的图像不显示
下面是我的车把页面和文件结构的图像,我无法使用这些车把加载任何图像,不确定是什么原因造成的:
<div>
<h1>HI</h1>
<img src="images/normal.gif">
</div>
main hanlebars:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Form validation</title>
<meta charset="utf-8">
<link rel="stylesheet" href="/public/css/style.css">
</head>
<body>
{{{body}}}
</body>
</html>
我得到的错误是:
localhost/:12 GET http://localhost:3000/images/normal.gif 404 (Not Found)
如果我使用我得到的完整路径:
Not allowed to load local resource:
< a href="https://i.sstatic.net/wy8Dg.png" rel="nofollow noreferrer">
我不知道为什么这不起作用。我尝试过/images/normal.gif。还尝试添加属于人员文件夹一部分的其他图像,但它只显示损坏的图像。
Below is my handlebar page and image of my file structure, I am not able to load any images using these handlebars, not sure what is causing this:
<div>
<h1>HI</h1>
<img src="images/normal.gif">
</div>
main hanlebars:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Form validation</title>
<meta charset="utf-8">
<link rel="stylesheet" href="/public/css/style.css">
</head>
<body>
{{{body}}}
</body>
</html>
The error I get is:
localhost/:12 GET http://localhost:3000/images/normal.gif 404 (Not Found)
If I use the full path I get:
Not allowed to load local resource:
I don't know why this does not work. I tried /images/normal.gif. Also tried adding other images which are part of the people folder but it just displays a broken image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 images 文件夹放入 public 文件夹中,并将其注册到 index.js 文件中。
然后使用图像
place images folder inside the public folder and register it inside the index.js file.
then use image
图像文件夹应该位于 public 文件夹中,因为在 app.js 中静态使用 /public
The images folder should have been in public folder because in app.js static was using /public