2

Spring MVC 3 で CRUD アプリケーションを作成しています。編集ページ以外はすべて正常に動作しています。関連するデータベースで生成された値を含むいくつかのタグを編集ページに入力して、必要に応じて編集して保存できるようにします。edit.jsp と共有するために、modelAttribute で値のリストを渡しました。edit.jsp でそれらの値を取得できますが、value 属性がないため、これらの値をタグに入れることができません。助けてください。

Sharing the code below----------------------------

    enter code here
<form:form id="form5" commandName="user" action="modify.htm">
<table>
    <tr>
        <th>Name</th>
        <th>Age</th>
    </tr>
    <c:forEach items="${userList}" var="user">
        <tr>
            <td> <form:input path="name" value="${user.name}"/></td>
            <td><form:input path="age" value="{user.age}"/></td>
        </tr>
    </c:forEach>
    <tr><td><button type="button" onclick="modify()">Save</button></td></tr>
</table>
</form:form>
4

1 に答える 1