我的問題是如果有一種方法可以簡單地發佈進程檢票HTML響應?後處理Wicket響應(Rhino,jQuery)
我想要做的是將一些DOM轉換應用到使用Rhino(http://www.mozilla.org/rhino/)和jQuery生成的HTML中。 有人曾經想過嗎?任何建議從哪裏開始?
最佳, 馬切伊Wrzalik
OK,我有這樣的:
public class MyRequestCycle extends WebRequestCycle {
public MyRequestCycle(WebApplication application, WebRequest request, WebResponse response) {
super(application, request, response);
}
@Override
protected void onEndRequest() {
String responseString = response.toString();
//String newResponseString = process(responseString);
//replace old response content with the newResponseString
super.onEndRequest();
}
}
在方法onEndRequest字符串responseString包含HTML代碼,我要去使用Rhino,Envjs和jQuery改變某種方式,但問題是如何用新的替換舊的響應內容?
謝謝!這非常有幫助。 – Maciej 2010-12-09 11:45:23