Stripesを使用しています。私のアクションBeanには、id(String)とquantity(int)を持つHashMapがあります。JSPで、フォーム、ID、およびHashMapにマップする数量を送信して、フォーム上のすべてのIDと数量がHashMapに「配置」されるようにします。どうすればいいのですか?
私は次のようなことをしました-
ActionBean内(getterおよびsetterを使用)-
private Map<String, Integer> productVariantMap = new HashMap<String, Integer>();
JSPで-
<s:useActionBean
beanclass="com.hk.web.action.core.b2b.B2BAddToCartAction" var="atc"/>
<s:useActionBean>
ループを介してonsubmitの値を取得し、次のような値を入力します。
${atc:productVariantMap.put(id, quantity)};
or
$(atc.productVariantMap.put(id,quantity)};
これらの作品はありません。HashMapをマップする方法、または要件に従ってこれらの値を追加する方法を提案してください。ありがとう。