如何在Wicket 1.5中重置响应

时间:2012-05-08 10:41:14

标签: wicket wicket-1.5

在wicket 1.4中,webResponse.reset()清除缓冲区。但是在wicket 1.5中还剩下一些垃圾。

响应:

<tr></tr>
<tr></tr>

然后我的有效json紧随其后。

WebResponse webResponse = (WebResponse) cycle.getResponse();
webResponse.reset();

webResponse.setContentType("application/x-json; charset=utf-8"); //$NON-NLS-1$
Url url = RequestCycle.get().getUrlRenderer().getBaseUrl();
webResponse.setHeader("Wicket-Ajax-BaseURL", url.toString()); //$NON-NLS-1$
webResponse.disableCaching();

// Write x-json content to the response.
String output = json.toString();

webResponse.write(output);

0 个答案:

没有答案