1

次のような形式の単一のJSPマークアップページを実装したいと思います。

JSP:formPay.jsp

<form action="<%=request.getContextPath() + "/Pay.do"%>" method="post" id="guest">
    <table>
        <tr>
            <td width="150"><span class="required">*</span> First Name:</td>
            <td><input type="text" name="firstname" value="<%= request.getAttribute("firstname") %>" />
            </td>
        </tr>
    [...]
    </table>
<input class="button" type="submit" value="Confirm" name="btnConfirm">
</from>

サーブレット:PayCommand.java

public class PayCommand implements Command {

    @Override
    public HttpServletRequest execute(HttpServletRequest request)
            throws ServletException, IOException {

        boolean errorWithField = false;

        String paramFirstName = "";
        String paramLastName = "";
        String paramEmail = "";
        String paramCity = "";
        String paramAddress = "";

        try {
            paramFirstName = request.getParameter("firstname");
            paramLastName = request.getParameter("lastname");
            paramEmail = request.getParameter("email");
            paramCity = request.getParameter("city");
            paramAddress = request.getParameter("address");
        } catch (Exception e) {
            request.setAttribute("jsp", "formPay");
            return request;
        }   

        if (paramFirstName==null || paramFirstName.equals("")) {
            errorWithField = true;
        }
        if (paramLastName==null || paramLastName.equals("")) {
            errorWithField = true;
        }
        if (paramEmail==null || paramEmail.equals("")) {
            errorWithField = true;
        }   
        if (paramCity==null || paramCity.equals("")) {
            errorWithField = true;
        }
        if (paramAddress==null || paramAddress.equals("")) {
            errorWithField = true;
        }

        // if errorWithField==true, reload the formPay.jsp
        if (errorWithField) {
            request.setAttribute("message", "You have to fill out all of the fields.");

            request.setAttribute("jsp", "formPay");
            request.setAttribute("firstname", paramFirstName);
            request.setAttribute("lastname", paramLastName);
            request.setAttribute("email", paramEmail);
            request.setAttribute("city", paramCity);
            request.setAttribute("address", paramAddress);

        } else {           
            // if not, go to the confirm page, everything is ok.
            request.setAttribute("jsp", "confirmation");
            request.setAttribute("firstname", paramFirstName);
            request.setAttribute("lastname", paramLastName);
            request.setAttribute("email", paramEmail);
            request.setAttribute("city", paramCity);
            request.setAttribute("address", paramAddress);
        }
        return request;
    }
}

問題は、JSPを初めてロードするときに、エラーがなかったかのように解釈したいのですが、エラーが発生したため、ユーザーがフォームに入力する前でもエラーメッセージが表示されることですerrorWithFieldtrue

null2番目の問題は、JSPが入力されたフィールドの値を取得しますが、JSPが最初にロードされたときを含め、そこに何もなかった場合は返されることです。この問題をどのように処理できますか?

編集Pay.doフォームアクションはにリダイレクトされることに 注意してくださいPayCommand.java。これはフロントコントローラーパターンで処理されます。(表示されていません)

4

2 に答える 2

3

フォームに非表示のフィールドを追加して、値があるかどうかを確認できます。含まれている場合は、フォームがポストバックされています。それ以外の場合は、最初のロードです(エラーチェックをスキップする必要があります)。

于 2011-06-21T02:37:26.620 に答える
2
  1. 最初の質問ですが、属性errorWithFieldをtrueに設定せずに、jspページに転送する場合にのみ別の.doアクションを使用できると思います。
  2. 2番目の質問、あなたはこれを試すことができます:

    <%= request.getAttribute( "firstname")== null?"":request.getAttribute( "firstname")%>

于 2011-06-21T02:42:07.473 に答える