2017-07-31 57 views
0

虽然{{post.story}}正在正确显示,但未加载图像。控制台显示404 error无法通过手柄模板加载图像

homepage.hbs包含以下代码:

{{#each data as |post|}} 
    //dispayed correctly 
    {{post.story}} 
    //not being displayed 
    <img src= {{post.image}}> 
{{/each}}  

回答

0

你需要用你的IMG src中的字符串。

<img src="{{post.image}}"> 
+0

仍然无法正常工作。 –

+0

@HarshitBisht您可以复制并发布页面源代码中的''元素吗? – matthewninja

+0