带有Follow标记的参数和传递参数,它如何工作?

问题描述 投票:0回答:1

我有一个jsp页面,其代码如下:

<script language="JavaScript">
function doOK()
{       
    var form = getForm();       
    if(form.varianceIsZeroOrReroute.value == '<%=ReIMConstants.NO%>')
    {
        if(!confirm("<bean:message key="alert.confirm_resolution_variance_not_zero"/>"))
        {
            return;
        }       
    }

    form.saveAction.value = '<%=PriceReviewListForm.SAVE_ACTION_OK%>';
    form.action = "priceReviewVarianceResolutionSave.do";
    form.submit();
    return true;    
}

然后像这样

<tr class="gButtonRow">
            <td colspan="4" align="center" class="gContentSection">
                <html:button property="Back" styleClass="gButton" onclick="back();"><bean:message key="button.back"/></html:button>&nbsp;&nbsp;
                <html:button property="OK" styleClass="gButton" onclick="doOK()">&nbsp;&nbsp;<bean:message key="button.ok"/>&nbsp;&nbsp;</html:button>&nbsp;&nbsp;
                <html:button property="Delete" styleClass="gButton" onclick="deleteRecords();"><bean:message key="button.delete"/></html:button>&nbsp;&nbsp;
                <html:button property="ApplyAll" styleClass="gButton" onclick="doApplyAll();"><bean:message key="button.apply_all"/></html:button>&nbsp;&nbsp;
                <html:button property="Cancel" styleClass="gButton" onclick="doCancel();"><bean:message key="button.cancel"/></html:button>&nbsp;&nbsp;
            </td>
        </tr>
    </table>

因此,正如您在doOK内部看到的那样,引用了priceReviewVarianceResolutionSave路径。在struts-config.xml内部,路径描述如下:

<action path="/priceReviewVarianceResolutionSave"
        type="org.springframework.web.struts.DelegatingActionProxy"
        name="PriceReviewListForm" scope="session">
        <forward name="failureInvoice"
            path="/price_review_variance_resolution.jsp" />
        <forward name="failureDocument"
            path="/price_review_variance_resolution_dispute.jsp" />
        <forward name="successFull" path="/price_review_list.jsp" />
        <forward name="successMore"
            path="/priceReviewDetailLoad.do" />
        <forward name="successDone" path="/home.do?targetTab=t4" />
        <forward name="successApplyAll"
            path="/priceReviewListLoad.do" />
        <forward name="detailMatch" path="/detailMatchBegin.do" />
        <forward name="unauthorized_access"
            path="/home.do?targetTab=t4" />
    </action>

据我所知,它从表单中读取某种输入,并依赖于它进入特定页面。例如,如果值是“ successApplyAll”,那么它将转到“ /priceReviewListLoad.do”。但是问题是我在jsp代码中看不到“ successApplyAll”的任何提法。因此,我不知道在哪里可以找到将“ successApplyAll”传递给“ priceReviewVarianceResolutionSave”部分的代码。当然,我错过了一部分或弄错了。您能帮我一下,解释一下我在哪里需要寻找这部分代码吗?谢谢!

jsp struts
1个回答
0
投票

使用转发名内部动作确定接下来要做什么。

甚至grep都可以帮助您找到该字符串在代码中的使用位置,即使假设完全没有Struts知识。就是说:如果您正在使用Struts代码库,则可以退后一步,至少了解一些基础知识。

© www.soinside.com 2019 - 2024. All rights reserved.