Sailsjs有时本地托管的徽标根本不加载

时间:2014-09-12 06:34:09

标签: gruntjs sails.js

我正在运行Sails V0.10.5和

'get /': {
    controller: 'VenueController',
    action: 'index'
  },

  'get /:name': {
    controller: 'VenueController',
    action: 'showProfile'
  }

当我使用索引方法时,图像可以完美地提供,但是当使用showProfile方法时,/ images / logo.png中的图像有时无法加载。这就像5-7页刷新后一样。

我不知道为什么会发生这种情况。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

简单地说,因为您没有使用图片位置的绝对路径。

//change this
<img src="your/image/path.jpg" />
//to this
<img src="/your/image/path.jpg" />
//dont' forget the path relative to assests folder

ps:这是我的第一个答案,抱歉有些错误