0

在struts2 中实现了编辑功能。单击提交按钮后,我在 JSP 中显示的 bean 值在动作类中正确获取。

但是我在 JSP 中没有提到的其他 bean 值正在返回 null。

如果我在 JSP 中显示 bean 的所有值,那么我可以在 Action 中获取所有值。

这是解决此问题的方法。否则,还有其他方法。

Action 类的代码是

 UserForm userForm = new UserForm();

public String edit(){
    String result = ActionSupport.ERROR;
    HttpServletRequest request = (HttpServletRequest) ActionContext.getContext().get( ServletActionContext.HTTP_REQUEST);
        HttpSession session = request.getSession(false);
        if (null != session
                && null != (UserAccount) session.getAttribute(USER)) {
            String editUser = (String) request
            .getParameter(RequestAttributes.EDIT_USER);
            UserAccount userAccount = userForm.getUserAccount();
        if (null != editUser) {
                    //invoked when edit user page is submitted
            userUtils.updateUserAccount(userAccount);

        } else {
                    // invoked when edit user page gets loaded
            String userAccSID = (String) request
                    .getParameter(USER_ACC_SID);
            String roleSID = (String) request.getParameter(ROLE_SID);
            if (null != userAccSID && null != roleSID) {
                Long userAccSIDVal = Long.valueOf(userAccSID);
                Long roleSIDVal = Long.valueOf(roleSID);
                userAccount = userUtils
                        .loadUserAccount(userAccSIDVal);
                userForm.setUserAccount(userAccount);
            }
        }
    } 

    return result;
}

public UserForm getUserForm() {
    return userForm;
}

public void setUserForm(UserForm userForm) {
    this.userForm = userForm;
}

JSP页面的代码是

<s:form action="edit?editUser=edit">
<table align="center">
                    <s:hidden name="userForm.userAccount.createdBy"/>
        <tr align="center">
            <th>Edit User</th>
        </tr>
        <tr>
            <td><s:textfield name="userForm.userAccount.firstName" label="First Name"/></td>
        </tr>
        <tr>
            <td><s:textfield name="userForm.userAccount.lastName" label="Last Name"/></td>
        </tr>

        <tr>
            <td><s:submit value="Save" /><s:reset value="Cancel" /></td>
        </tr>
</table>

现在,如果我将 createdBy 隐藏,那么我可以在 Action 中获取 createdBy 的值。它的值已经由动作类设置。那么,为什么还要在jsp页面中设置呢?

任何帮助将不胜感激。谢谢

4

1 回答 1

1

如果您没有从 JSP 返回值,那么它们如何在表单提交时可用于 Action 类。一种解决方案是创建隐藏字段并设置您不想在 JSP 页面上向用户显示的值,这样当您点击提交按钮时,这些值将被提交给操作。

其他选择是将数据存储在 Session 中或在您的操作类中获取值,但在我们没有其他选择之前,它们不是可取的解决方案。

于 2012-09-17T12:25:42.287 回答