0
マップを含むリストをどのように繰り返しますか?ハッシュマップを含むMyBatis反復リスト
<foreach item="item" index="index" collection="list">
${item}.{key}
</foreach>
これは、あなたがこのようにそれを使用する必要があり、私のため
マップを含むリストをどのように繰り返しますか?ハッシュマップを含むMyBatis反復リスト
<foreach item="item" index="index" collection="list">
${item}.{key}
</foreach>
これは、あなたがこのようにそれを使用する必要があり、私のため
を動作していないよう:
<foreach item="item" index="index" collection="list">
${item.key}
</foreach>
これは感謝を働きました! – garlicbread