5

我正在使用 Apache Struts 1.3 来呈现网格,它是嵌入在 .jsp 中的 html 表单。就像是

<html:form action="/MyController.do?action=processForm">
<html:text property="taxation[0][0]" value="" styleClass="gridInputs"></html:text>
<html:text property="taxation[0][1]" value="" styleClass="gridInputs"></html:text>
 ...
<html:text property="taxation[10][10]" value="" styleClass="gridInputs"></html:text>

MyController 与 ActionForm 相关联:

public class MyForm extends ActionForm{

protected String taxation[][]= new String [10][10]; 

public String[] getTaxation() {
    return taxation;
}

public void setTaxation(String[][] taxation) {
    this.taxation = taxation;
}

当我尝试检索表单提交的信息时出现问题。Whithin MyController.class 我有一个简单的调度程序操作

public class MyController extends DispatchAction {
public ActionForward processForm(ActionMapping mapping, ActionForm form,
        HttpServletRequest request, HttpServletResponse response) {

    MyForm myform = (MyForm) form;

            // Here i can use the getter method to retrieve an array, but
           // myform is already wrong populated from struts


    }


    return mapping.findForward("stage2");

}

我知道我可以使用 Vector(一维数组)并且它工作得很好,但遗憾的是我需要遵循一些规范(并且规范迫使我使用 MyForm 类和 10x10 矩阵......)。使用 struts 填充二维数组的正确方法是什么?

感谢您的帮助!

4

1 回答 1

6

Struts 不支持在 Form bean 中填充多维数组。但是,它确实处理对象的一维数组。因此,如果您可以创建一个本身包含一维数组的类(例如 MatrixRow),然后您可以在表单 bean 中创建该对象的一维数组,那么作为一种解决方法。你的新课程看起来像

    public class MatrixRow {

    private String matrixCol[] = new String[10];

    /**
     * @return the matrixCol
     */
    public String[] getMatrixCol() {
        return matrixCol;
    }

    /**
     * @param matrixCol the matrixCol to set
     */
    public void setMatrixCol(String[] matrixCol) {
        this.matrixCol = matrixCol;
    }
}

然后在你的表单bean中

private MatrixRow[] arrMatrix = new MatrixRow[10];
/**
     * @return the arrMatrix
     */
    public MatrixRow[] getArrMatrix() {
        return arrMatrix;
    }

    /**
     * @param arrMatrix the arrMatrix to set
     */
    public void setArrMatrix(MatrixRow[] arrMatrix) {
        this.arrMatrix = arrMatrix;
    }

并且在您的 JSP 中,您可以使用类似

    <html:form action="biArrayTestAction.do">
    <table cellpadding="0" cellspacing="0" width="100%">
    <logic:iterate id="matrixRows" name="biArrayTestForm" 
                   property="arrMatrix" indexId="sno" 
                   type="logic.MatrixRow" >
    <tr>
        <td><bean:write name="sno"/></td>
    <logic:iterate id="matrixCol" name="matrixRows" property="matrixCol" indexId = "colNo">
        <td>
           <input type="text" name="arrMatrix[<%=sno %>].matrixCol[<%=colNo %>]">
        </td>
    </logic:iterate>
    </tr>
    </logic:iterate>
    <tr>
      <td align="center" valign="top" colspan="2">
        &nbsp;
      </td>
    </tr>
    <tr>
        <td align="center" valign="top" colspan="2">
          <html:submit property="command" value="Test"></html:submit>
        </td>
    </tr>
   </table>

当您提交该表单时,您将获得填充了值的 MatrixRow 对象的所有列。

我希望这能帮到您。我没有找到在 Struts1 中使用多维数组的任何其他方式。

于 2013-02-07T09:23:42.553 回答