現在、次のコードがあり、データは正常に表示されます。
<logic:iterate name="myList" id="product" indexId="iteration" type="com.mycompany.MyBean">
<tr>
<td> <bean:write name="product" property="weight"/> </td>
<td> <bean:write name="product" property="sku"/> </td>
<td> <bean:write name="product" property="quantity"/> </td>
</tr>
</logic:iterate>
しかし今、私は「量」の部分を変更可能にする必要があります。ユーザーはそのフィールドを更新し、送信を押すことができるはずです。サーバーに送信されると、「myList」は新しい数量で自動的に更新されます。
私はこれについて助けを求めてみましたが、私が見つけ続けているのは、データを変更するのではなく、データのみを表示する方法の例です。どんな助けでもいただければ幸いです。