我想在执行一个动作之后将一个参数附加到URL,即在拦截器中。
我该怎么做呢?
在这里,在struts.xml
<action name="reviewpolist" class="purchaseOrderAction" method="getReviewPOList">
<result name="success">reviewpolist.jsp </result>
</action>
我目前的网址是 -
localhost":8080/FLO_OSIII/po/jsp/reviewpolist.action?s=185366951
现在我想将参数GetFlg=1
添加到URl中,
localhost:8080/FLO_OSIII/po/jsp/reviewpolist.action?s=185366951&GetFlg=1
行动执行后。行动 -
public String getreviewpolist()throws Throwable{
// here my processing code.
return SUCCESS;
}