簡體   English   中英

Struts:從另一個 DispatchAction 調用一個 DispatchAction 方法

[英]Struts : call a a method of DispatchAction from another DispatchAction

我想從另一個調度操作中調用一個 dispatchAction 方法。 我希望當我點擊更新或刪除時“內部顯示用戶方法”將顯示在我的 jsp 上。

Struts 配置文件

<action-mappings>
    <action input="/index.jsp" parameter="methodtocall" name="UserForm" path="/UserAction" scope="session" type="com.tk20.UserAction">
        <forward name="success" path="/dispatch.do?getMethodtocall=display.do" />
    </action>

    <action path="/dispatch.do?getMethodtocall=display" parameter="getMethodtocall" name="UserForm" scope="session" type="com.tk20.TestDispatchAction">
        <forward name="success" path="/index.jsp" />
    </action>

    <action path="/Welcome" forward="/welcomeStruts.jsp" />
</action-mappings>

調度動作類

public class UserAction extends DispatchAction {

    /* forward name="success" path="" */
    private final static String SUCCESS = "success";

    /**
     * This is the Struts action method called on
     * http://.../actionPath?method=myAction1,
     * where "method" is the value specified in <action> element : 
     * ( <action parameter="method" .../> )
     */
    public ActionForward add(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        UserForm userForm = (UserForm) form;

        return mapping.findForward("dispatch");
    }


    public ActionForward update(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        UserForm userForm = (UserForm) form;
        userForm.setMessage("Inside update user method.");
        return mapping.findForward(SUCCESS);
    }

    public ActionForward delete(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        UserForm userForm = (UserForm) form;
        userForm.setMessage("Inside delete user method.");
        return mapping.findForward(SUCCESS);
    }
}

public class TestDispatchAction extends DispatchAction {

    /* forward name="success" path="" */
    private final static String SUCCESS = "success";

    /**
     * This is the Struts action method called on
     * http://.../actionPath?method=myAction1,
     * where "method" is the value specified in <action> element : 
     * ( <action parameter="method" .../> )
     */
    public ActionForward display(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        UserForm userForm = (UserForm) form;
        userForm.setMessage("Inside display user method.");
        return mapping.findForward(SUCCESS);
    }

}

JSP 頁

<html>
<head>
<script type="text/javascript">
    function submitForm() {
        document.forms[0].action = "UserAction.do?methodtocall=add";
        document.forms[0].submit();
    }
</script>
</head>
<body>
<html:form action="UserAction">
    <table>
        <tr><td><bean:write name="UserForm" property="message" /></td></tr>
        <tr><td><html:submit value="Add" onclick="submitForm()" /></td></tr>
        <tr><td><html:submit property="methodtocall" value="update" /></td></tr>
        <tr><td><html:submit property="methodtocall">delete</html:submit></td></tr>
    </table>
</html:form>
</body>
</html>

謝謝

只需將方法名稱傳遞給您要調用的參數變量

<action path="/dispatch.do?getMethodtocall=display" parameter="getMethodtocall" name="UserForm" scope="session" type="com.tk20.TestDispatchAction">
    <forward name="success" path="/index.jsp" />
</action>

<action path="/Welcome" forward="/welcomeStruts.jsp" />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM