HTML图片src显示在我的实时网站上,而不显示在本地或我的代码中

时间:2019-01-27 10:39:08

标签: node.js handlebars.js digital-ocean

我最近部署了一个网站,在我的实时网站上,我看到以下html:

<img id="profilePicture" src="profile_stock_avatar.png" alt="profilePicture">

此src在其他地方都找不到。在页面的把手代码上,它是:

<img id="profilePicture" src="{{picture}}" alt="profilePicture"/>

{{picture}}是指向地球图片的链接,绝对不是profile_stock_avatar,这是我很久以前在页面上使用的。当我在本地运行该站点时,它根本没有那个股票头像,它只有一个。即使在拉动git repo之后,这也只能显示在实时坐姿上。我用于加载页面的服务器代码是:

app.get('/', function (req, res, next) {
    res.status(200).render('body', notePostData['welcome']);
});

notepostData为“ welcome”为:

"welcome" : {
    "picture" : "https://images.pexels.com/photos/2422/sky-earth-galaxy-universe.jpg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260",
    "username" : "Welcome!",
    "biography" : "Creating an account is coming soon :) In the meantime, feel free to leave a note!",
    "posts" : [
          {
          }
    ]
}

我一直在努力寻找原因。请帮帮我!

0 个答案:

没有答案