我想将我的struts 1页面迁移到struts 2但是我在从一个页面移动到另一个页面时遇到了一些问题,因为我无法将新页面的值分配给action类的java对象。
<% AccountInfoTab accountInfoTab = (AccountInfoTab) session.getAttribute(Constants.ACCOUNT_INFO_TAB_FORM_KEY); %>
function getPaymentHistoryPage(newPageNmber) {
document.accountInfoTab.paymentHistoryPageRequested.value = newPageNmber;
alert(document.accountInfoTab.paymentHistoryPageRequested);
document.accountInfoTab.submit();
}
上面的代码适用于Struts 1,但相同的代码不适用于struts 2。请给我建议如何将新页面值分配给我的java对象?