使用车把时我的图像不显示

发布于 2025-01-09 14:48:18 字数 934 浏览 0 评论 0原文

下面是我的车把页面和文件结构的图像,我无法使用这些车把加载任何图像,不确定是什么原因造成的:

<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">enter图片描述在这里

我不知道为什么这不起作用。我尝试过/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:

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沉溺在你眼里的海 2025-01-16 14:48:18

将 images 文件夹放入 public 文件夹中,并将其注册到 index.js 文件中。

app.use("/images", express.static(path.join(__dirname, "/public/images")));

然后使用图像

<img src='images/normal.gif'>

place images folder inside the public folder and register it inside the index.js file.

app.use("/images", express.static(path.join(__dirname, "/public/images")));

then use image

<img src='images/normal.gif'>
冷血 2025-01-16 14:48:18

图像文件夹应该位于 public 文件夹中,因为在 app.js 中静态使用 /public

The images folder should have been in public folder because in app.js static was using /public

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文