我想在我的视图中显示与用户个人资料图片对应的动态图片。
我的控制器有以下内容:
render(..,userImage);
在我看来我这样做
<img src="${'../public/images/'+userImage}" alt="logo" id="logo" class="center"/>
在我的本地机器上一切正常,因为我正在使用localhost:9005
。当我部署到我的测试机器时,我使用的网址是http://testserver/AdminConsole
,并且视图显示在http://testserver/public/images/userJohn1234.jpg
playframework 1.2.4不允许这样做吗?
答案 0 :(得分:0)
简单地删除点
<img src="/public/images/${userImage}" alt="logo" id="logo" class="center"/>