我使用Blob将图像存储在Google App Engine中。当我使用ListDataProvider的add()方法在CellList中添加新数据时,它会使渲染变得完美。
以下是AbstractCell的扩展版本:
@Override
public void render(com.google.gwt.cell.client.Cell.Context context,
AppsBean value, SafeHtmlBuilder sb) {
String url=GWT.getModuleBaseURL()+"fetchIcon?appId="+value.getId()+"&requestType=icon";
sb.appendHtmlConstant("<Table>");
sb.appendHtmlConstant("<tr><td rowspan='3'>");
sb.appendHtmlConstant("<img src='"+url+"' style='width : 75px ;height: 75px;' />");
sb.appendHtmlConstant("</td><td>");
sb.appendEscaped(value.getAppName());
sb.appendHtmlConstant("</td></tr><tr><td>");
sb.appendEscaped(value.getAppLink());
sb.appendHtmlConstant("</td></tr><tr><td>");
sb.appendEscaped(value.getAppDesc());
sb.appendHtmlConstant("</td></tr>");
sb.appendHtmlConstant("</Table>");
}
Servlet代码:
String appId = get(request, "appId");
String requestType = get(request, "requestType");
log.info("Your request for apps icon: " + appId + ", requestType: " + requestType);
if (requestType.equalsIgnoreCase("icon")) {
Apps icon = appsServiceImpl.getApp(Long.valueOf(appId));
log.info("We got apps for you: " + icon);
if(icon != null){
log.info("We got store logo for you: " + icon.getIcon());
response.getOutputStream().write(icon.getIcon());
}
}
现在,当我在Blob中更新图像时,我希望它能反映在CellList的Cell中。为了更新单元格,我正在使用ListDataProvider的set()方法。
使用set()方法,Cell中的Text数据更新完美,但图像没有得到更新。该url也会完美生成,但在呈现单元格后不会再生成对Servlet的调用。
任何人都可以这样做,以便再次生成对Servlet的调用吗?
答案 0 :(得分:0)
在网址末尾添加参数。像随机int的东西。 图像不会刷新,因为浏览器假定它与以前的图像相同,并使用其缓存中的图像。
Random random = new Random();
String url=GWT.getModuleBaseURL()+"fetchIcon?appId="+value.getId()+"&requestType=icon" + "&r=" + random.nextInt();