传递bean:将值从Jsp写入Action Class

时间:2014-04-18 19:30:50

标签: java html jsp java-ee struts-1

我是struts的新手,我无法理解这一点。

candyViewJobs.jsp 页面有一个数组列表,如下表所示

<form method="post" name="form">
                <table id='tableViewJobs'> 
                    <tr>
                        <th width="14%">Job Code</th>
                        <th width="14%">Job Name</th>
                        <th width="14%">Qualification Required</th>
                        <th width="16%">Skills</th>
                        <th width="14%">Experience Required</th>
                        <th width="14%">Vacancies</th>
                    </tr>
                    <logic:iterate name="view" id="jobs">
                    <tr>
                        <td><bean:write name="jobs" property="jcode"/></td>
                        <td><bean:write name="jobs" property="jname"/></td>
                        <td><bean:write name="jobs" property="qualify"/></td>
                        <td><bean:write name="jobs" property="skills"/></td>
                        <td><bean:write name="jobs" property="xp"/></td>
                        <td><bean:write name="jobs" property="vac"/></td>
                        <td><input type="button" value="Apply"/></td>
                        <td><input type="button" value="View More Details" onclick="location.href='viewDetails.do'"/></td>
                    </tr>                          
                    </logic:iterate>
                </table>      
            </form>

我需要调用我的动作类并访问每个提到的作业都独有的jcode。我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用<h:param value="jCode">传递jCode。