我正在运行Sails V0.10.5和
'get /': {
controller: 'VenueController',
action: 'index'
},
'get /:name': {
controller: 'VenueController',
action: 'showProfile'
}
当我使用索引方法时,图像可以完美地提供,但是当使用showProfile方法时,/ images / logo.png中的图像有时无法加载。这就像5-7页刷新后一样。
我不知道为什么会发生这种情况。
非常感谢任何帮助。
答案 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:这是我的第一个答案,抱歉有些错误