我正在使用<html:hidden styleId="user" property="issueBranch" value='' />
对于<html:hidden>
的值,我想设置从<bean:write name="sessionData" property="userId"/>
获取的值
怎么做?
答案 0 :(得分:1)
使用
<html:hidden styleId="user" property="issueBranch"/>
并在调度到JSP的操作中,将表单bean的issueBranch
属性设置为您想要的属性:
myActionForm.setIssueBranch(sessionData.getUserId());