动态图像src playframework

时间:2013-05-23 03:54:03

标签: playframework-1.x

我想在我的视图中显示与用户个人资料图片对应的动态图片。

我的控制器有以下内容:

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不允许这样做吗?

1 个答案:

答案 0 :(得分:0)

简单地删除点

<img src="/public/images/${userImage}" alt="logo" id="logo" class="center"/>