0

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

我的控制器有以下内容:

render(..,userImage);

在我看来,我这样做

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

在我的本地机器上,一切正常,我正在使用localhost:9005。当我部署到我的测试机器时,我使用的 url 是http://testserver/AdminConsole并且视图显示一个损坏的图像,因为它正在寻找图像http://testserver/public/images/userJohn1234.jpg

playframework 1.2.4 不允许这样做吗?

4

1 回答 1

0

只需删除点

<img src="/public/images/${userImage}" alt="logo" id="logo" class="center"/>
于 2013-05-23T07:45:17.153 回答