在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);