MyBatis 迭代包含 hashmap 的列表
MyBatis iterate list which contains hashmap
如何遍历包含地图的列表。
<foreach item="item" index="index" collection="list">
${item}.{key}
</foreach>
这似乎对我不起作用
你应该这样使用它:
<foreach item="item" index="index" collection="list">
${item.key}
</foreach>
如何遍历包含地图的列表。
<foreach item="item" index="index" collection="list">
${item}.{key}
</foreach>
这似乎对我不起作用
你应该这样使用它:
<foreach item="item" index="index" collection="list">
${item.key}
</foreach>